From: Jim Meyering Date: Sat, 21 Mar 2009 08:52:41 +0000 (+0100) Subject: tests: follow own advice: use $(PATH_SEPARATOR), not ":" X-Git-Tag: v7.2~21 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e45c9a02a4506417949fbc3af91c2e9900d35cc6;p=thirdparty%2Fcoreutils.git tests: follow own advice: use $(PATH_SEPARATOR), not ":" * maint.mk (coreutils-path-check): Use the variable, not the literal. --- diff --git a/maint.mk b/maint.mk index 17f0be83fe..a809a5ff56 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 \ || :; } \