3
0
Fork 0
forked from mirrors/nixpkgs

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