summaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorKO Myung-Hun <komh78@gmail.com>2014-11-07 23:41:28 +0900
committerStefano Lattarini <stefano.lattarini@gmail.com>2014-12-19 21:08:13 +0100
commit5401c31d27b6bdafe0246cf780830717af44188e (patch)
tree12e80faaa54c1f3b9b01fac6fa84a2e41000ad92 /Makefile.am
parente7c14d967b5bfa587c4a9fc847126b39198b7463 (diff)
downloadautomake-5401c31d27b6bdafe0246cf780830717af44188e.tar.gz
PATH: quote $(PATH_SEPARATOR) as well
On OS/2, $(PATH_SEPARATOR) is ';'. Without quote, it is recognized as a mark of end of sentence. * Makefile.am: quote $(PATH_SEPARATOR) as well. * t/Makefile.inc: Likewise. Copyright-paperwork-exempt: yes Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 143308a11..8501e2a0e 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -72,7 +72,7 @@ generated_file_finalize = $(AM_V_at) \
# For some tests or targets, we need to have the just-build automake and
# aclocal scripts avaiable on PATH.
extend_PATH = \
- { PATH='$(abs_builddir)/t/wrap'$(PATH_SEPARATOR)$$PATH && export PATH; }
+ { PATH='$(abs_builddir)/t/wrap$(PATH_SEPARATOR)'$$PATH && export PATH; }
# The master location for INSTALL is lib/INSTALL.
# This is where "make fetch" will install new versions.