summaryrefslogtreecommitdiff
path: root/maint.mk
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2009-03-21 09:52:41 +0100
committerJim Meyering <meyering@redhat.com>2009-03-21 09:58:37 +0100
commite45c9a02a4506417949fbc3af91c2e9900d35cc6 (patch)
treefe593c21302a634e22675716ba5cbdcea2057af2 /maint.mk
parent1f95a450996aae2e99c02241f31ffd370db2e472 (diff)
downloadcoreutils-e45c9a02a4506417949fbc3af91c2e9900d35cc6.tar.xz
tests: follow own advice: use $(PATH_SEPARATOR), not ":"
* maint.mk (coreutils-path-check): Use the variable, not the literal.
Diffstat (limited to 'maint.mk')
-rw-r--r--maint.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/maint.mk b/maint.mk
index 17f0be83f..a809a5ff5 100644
--- a/maint.mk
+++ b/maint.mk
@@ -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 \
|| :; } \