Add quotes to wrapProgram's arguments

This commit is contained in:
Alexander Foremny 2012-08-30 14:27:03 +02:00
parent 50400e345c
commit a23f6dc4c4

View file

@ -21,7 +21,7 @@ in stdenv.mkDerivation {
make PREFIX="$out" install
for fn in plow{del,down,list,up}; do
wrapProgram "$out/bin/$fn" --prefix PATH : ${curl}/bin
wrapProgram "$out/bin/$fn" --prefix PATH : "${curl}/bin"
done
'';