From e45c9a02a4506417949fbc3af91c2e9900d35cc6 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 21 Mar 2009 09:52:41 +0100 Subject: [PATCH] tests: follow own advice: use $(PATH_SEPARATOR), not ":" * maint.mk (coreutils-path-check): Use the variable, not the literal. --- maint.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/maint.mk b/maint.mk index 17f0be8..a809a5f 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 \ || :; } \ -- 2.7.4