[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Patches for midnight commander
From: |
Mark H Weaver |
Subject: |
Re: Patches for midnight commander |
Date: |
Tue, 25 Mar 2014 21:51:46 -0400 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) |
address@hidden (Ludovic Courtès) writes:
> Eric Bavier <address@hidden> skribis:
>
>> --- a/gnu/packages/ssh.scm
>> +++ b/gnu/packages/ssh.scm
>> @@ -110,6 +110,18 @@ remote applications.")
>> (build-system gnu-build-system)
>> (inputs `(("libgcrypt" ,libgcrypt)
>> ("zlib" ,zlib)))
>> + (arguments
>> + '(#:configure-flags
>> + `("--with-libgcrypt"
>> + ;; Programs that use libssh2.pc to link against libssh2 need to also
>> + ;; know where to find libgrypt and zlib libraries. LDFLAGS are put
>> + ;; into the LIBS field of libssh2.pc
>> + ,(string-append
>> + "LDFLAGS=-L"
>> + (assoc-ref %build-inputs "libgcrypt")
>> + "/lib -L"
>> + (assoc-ref %build-inputs "zlib")
>> + "/lib"))))
>
> Another way to address that would be to rename ‘inputs’ to
> ‘native-inputs’.
Did you mean to write 'propagated-inputs' here?
Mark