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.
This commit is contained in:
Jim Meyering 2003-02-02 20:14:53 +00:00
parent 62631d8844
commit 08b6275885

View 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"