summaryrefslogtreecommitdiff
path: root/cfg.mk
diff options
context:
space:
mode:
authorJuan Manuel Guerrero <juan.guerrero@gmx.de>2017-03-05 08:58:36 -0800
committerJim Meyering <meyering@fb.com>2017-03-05 09:51:26 -0800
commit70032889a81f2dd391e5053dadb9b697e94107b6 (patch)
tree3b14633624ad08e7e419dbbcb872129242ab8568 /cfg.mk
parent4f09670d3c669be2b2434bbdad6a979740e29f0c (diff)
downloadgrep-70032889a81f2dd391e5053dadb9b697e94107b6.tar.gz
build: use $(PATH_SEPARATOR), not ":" to augment PATH
* cfg.mk (PATH): Use $(PATH_SEPARATOR), for those systems that use something other than ":". * THANKS.in: Remove name, to avoid syntax-check failure due to the duplicate, now that there is this commit.
Diffstat (limited to 'cfg.mk')
-rw-r--r--cfg.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/cfg.mk b/cfg.mk
index 6cebb4e9..52ed500c 100644
--- a/cfg.mk
+++ b/cfg.mk
@@ -17,7 +17,7 @@
# Cause the tool(s) built by this package to be used also when running
# commands via e.g., "make syntax-check". Doing this a little sooner
# would have avoided a grep infloop bug.
-export PATH := $(srcdir)/src:${PATH}
+export PATH := $(srcdir)/src$(PATH_SEPARATOR)${PATH}
# Used in maint.mk's web-manual rule
manual_title = GNU Grep: Print lines matching a pattern