From: Ralf Wildenhues Date: Mon, 26 Nov 2007 21:24:46 +0000 (+0100) Subject: Quote @abs_top_builddir@ and @abs_top_srcdir@. X-Git-Tag: v1.10b~202 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a7ef9660176bc5927a39fc519abbc03f13c4cbf9;p=thirdparty%2Fautomake.git Quote @abs_top_builddir@ and @abs_top_srcdir@. * tests/aclocal.in: Likewise. * tests/automake.in: Likewise. --- diff --git a/ChangeLog b/ChangeLog index a7954b9d5..827195937 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2007-11-26 Ralf Wildenhues + Quote @abs_top_builddir@ and @abs_top_srcdir@. + * tests/aclocal.in: Likewise. + * tests/automake.in: Likewise. + Fix TAGS and GTAGS rules to cope with whitespace in `pwd`. * lib/am/tags.am (TAGS): Use positional parameters to avoid the need to quote absolute file names. diff --git a/tests/aclocal.in b/tests/aclocal.in index ea3464c9a..35b1619ab 100644 --- a/tests/aclocal.in +++ b/tests/aclocal.in @@ -14,5 +14,5 @@ perllibdir="@abs_top_builddir@/lib@PATH_SEPARATOR@@abs_top_srcdir@/lib" export perllibdir # Most of the files are in $srcdir/../m4. However amversion.m4 is # generated in ../m4, so we include that directory in the search path too. -exec @abs_top_builddir@/aclocal $ACLOCAL_TESTSUITE_FLAGS \ - -I @abs_top_builddir@/m4 --acdir=@abs_top_srcdir@/m4 ${1+"$@"} +exec "@abs_top_builddir@/aclocal" $ACLOCAL_TESTSUITE_FLAGS \ + -I "@abs_top_builddir@/m4" "--acdir=@abs_top_srcdir@/m4" ${1+"$@"} diff --git a/tests/automake.in b/tests/automake.in index 4a8634568..d4c4c5c37 100644 --- a/tests/automake.in +++ b/tests/automake.in @@ -12,4 +12,4 @@ fi perllibdir="@abs_top_builddir@/lib@PATH_SEPARATOR@@abs_top_srcdir@/lib" export perllibdir -exec @abs_top_builddir@/automake --libdir=@abs_top_srcdir@/lib ${1+"$@"} +exec "@abs_top_builddir@/automake" "--libdir=@abs_top_srcdir@/lib" ${1+"$@"}