curl: Correct a syntax error

This commit is contained in:
John Wiegley 2015-01-06 10:15:17 -06:00
parent b4a5a049d8
commit 053083368b

View File

@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
preConfigure = ''
sed -e 's|/usr/bin|/no-such-path|g' -i.bak configure
rm src/tool_hugehelp.c
'' ++ stdenv.lib.optionalString stdenv.isDarwin '';
'' + stdenv.lib.optionalString stdenv.isDarwin ''
export DYLD_LIBRARY_PATH=${zlib}/lib:$DYLD_LIBRARY_PATH
'';