diff options
author | Jim Meyering <meyering@redhat.com> | 2009-03-21 09:52:41 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-03-21 09:58:37 +0100 |
commit | e45c9a02a4506417949fbc3af91c2e9900d35cc6 (patch) | |
tree | fe593c21302a634e22675716ba5cbdcea2057af2 | |
parent | 1f95a450996aae2e99c02241f31ffd370db2e472 (diff) | |
download | coreutils-e45c9a02a4506417949fbc3af91c2e9900d35cc6.tar.xz |
tests: follow own advice: use $(PATH_SEPARATOR), not ":"
* maint.mk (coreutils-path-check): Use the variable, not the literal.
-rw-r--r-- | maint.mk | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -741,7 +741,8 @@ define coreutils-path-check esac; \ done \ && ln -sf ../src/true $(bin)/false \ - && PATH=`pwd`/$(bin):$$PATH $(MAKE) -C tests check \ + && PATH=`pwd`/$(bin)$(PATH_SEPARATOR)$$PATH \ + $(MAKE) -C tests check \ && { test -d gnulib-tests \ && $(MAKE) -C gnulib-tests check \ || :; } \ |