From: Gary V. Vaughan Date: Mon, 5 May 2008 05:07:14 +0000 (-0400) Subject: Fix libtoolize test failure with aclocal < 1.10.1 X-Git-Tag: v2.2.6~45 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fc6191fe1f582517bd529f9d376773fd1c33817a;p=thirdparty%2Flibtool.git Fix libtoolize test failure with aclocal < 1.10.1 * tests/libtoolize.at (verbatim aclocal.m4 w/o AC_CONFIG_MACRO_DIR): Older aclocal requires a space between -I and the directory argument. Reported by Daniel Macks --- diff --git a/ChangeLog b/ChangeLog index d30cc9886..15ffae1b4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2008-05-05 Gary V. Vaughan + + Fix libtoolize test failure with aclocal < 1.10.1 + * tests/libtoolize.at + (verbatim aclocal.m4 w/o AC_CONFIG_MACRO_DIR): Older aclocal + requires a space between -I and the directory argument. + Reported by Daniel Macks + 2008-05-04 Gary V. Vaughan Set SCM version number to 2.2.5a. diff --git a/tests/libtoolize.at b/tests/libtoolize.at index 3de37c8d4..fa229b932 100644 --- a/tests/libtoolize.at +++ b/tests/libtoolize.at @@ -689,7 +689,7 @@ LT_AT_CHECK_LIBTOOLIZE([--copy], 0, expout) ## Upgrading an aclocal maintained aclocal.m4 without AC_CONFIG_MACRO_DIR. ## ## ----------------------------------------------------------------------- ## -LT_AT_ACLOCAL([-I$abs_top_srcdir/libltdl/m4]) +LT_AT_ACLOCAL([-I $abs_top_srcdir/libltdl/m4]) ## The following code is adapted (and simplified) from libtoolize.m4sh ####