1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Thanks urkud for pointing me to the wrong implementation of PATH_DELIMITER - fixed

svn path=/nixpkgs/trunk/; revision=9352
This commit is contained in:
Marc Weber 2007-09-20 21:06:26 +00:00
parent b840189493
commit ec3c6e932a

View file

@ -3,9 +3,9 @@ set -e
test -z $NIX_GCC && NIX_GCC=@gcc@
if [ -z ${system##*cygwin*} ]; then
PATH_DELIMITER=;
PATH_DELIMITER=';'
else
PATH_DELIMITER=;
PATH_DELIMITER=':'
fi