From: Jim Meyering Date: Sun, 2 Feb 2003 20:14:53 +0000 (+0000) Subject: Use @PATH_SEPARATOR@ instead of hard-coding the path-separator. X-Git-Tag: v4.5.5~12 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=08b6275885c89761c010f46bfe2a7b0bf19ae48a;p=thirdparty%2Fcoreutils.git 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. --- diff --git a/tests/chgrp/Makefile.am b/tests/chgrp/Makefile.am index 5b0ecd8eaf..c902f68fdf 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"