diff options
author | Jim Meyering <jim@meyering.net> | 2003-02-02 20:14:53 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-02-02 20:14:53 +0000 |
commit | 08b6275885c89761c010f46bfe2a7b0bf19ae48a (patch) | |
tree | 9d8630421f47bef56288f95f155d0876ffeafd55 | |
parent | 62631d88449f149fb4e2df7d8d95bf7c1af51997 (diff) | |
download | coreutils-08b6275885c89761c010f46bfe2a7b0bf19ae48a.tar.xz |
Use @PATH_SEPARATOR@ instead of hard-coding the path-separator.
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.
-rw-r--r-- | tests/chgrp/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/chgrp/Makefile.am b/tests/chgrp/Makefile.am index 5b0ecd8ea..c902f68fd 100644 --- a/tests/chgrp/Makefile.am +++ b/tests/chgrp/Makefile.am @@ -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" |