]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Use @PATH_SEPARATOR@ instead of hard-coding the path-separator.
authorJim Meyering <jim@meyering.net>
Sun, 2 Feb 2003 20:14:53 +0000 (20:14 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 2 Feb 2003 20:14:53 +0000 (20:14 +0000)
Also double-quote the new PATH, to avoid problems when the
path-separator is a semi-colon or when `pwd` contains e.g. a space.

tests/chgrp/Makefile.am

index 5b0ecd8eaf5b38a353c055a10636a9ca5cfd3e19..c902f68fdfd41769544ede8514ba5a163c9febf1 100644 (file)
@@ -4,4 +4,4 @@ AUTOMAKE_OPTIONS = 1.4 gnits
 TESTS = basic deref recurse
 EXTRA_DIST = $(TESTS)
 TESTS_ENVIRONMENT = \
-  PATH=`pwd`/../../src:$$PATH
+  PATH="`pwd`/../../src@PATH_SEPARATOR@$$PATH"