From: Ralf Wildenhues Date: Mon, 17 Mar 2008 22:39:05 +0000 (+0000) Subject: * libltdl/m4/libtool.m4 (_LT_CHECK_BUILDDIR): No need to escape X-Git-Tag: v2.2.2~4 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=516b0da855500f938101349d244f7e5453e4667f;p=thirdparty%2Flibtool.git * libltdl/m4/libtool.m4 (_LT_CHECK_BUILDDIR): No need to escape backticks in argument to AC_MSG_WARN or AC_MSG_ERROR. * libltdl/m4/ltdl.m4 (_LTDL_INSTALLABLE, LTDL_INIT): Likewise. --- diff --git a/ChangeLog b/ChangeLog index 3faaa03d5..399749eff 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-03-17 Ralf Wildenhues + + * libltdl/m4/libtool.m4 (_LT_CHECK_BUILDDIR): No need to escape + backticks in argument to AC_MSG_WARN or AC_MSG_ERROR. + * libltdl/m4/ltdl.m4 (_LTDL_INSTALLABLE, LTDL_INIT): Likewise. + 2008-03-16 Ralf Wildenhues * libltdl/config/ltmain.m4sh (NLS nuisances): Fix quoting of diff --git a/libltdl/m4/libtool.m4 b/libltdl/m4/libtool.m4 index 55a002d2d..9a700e65c 100644 --- a/libltdl/m4/libtool.m4 +++ b/libltdl/m4/libtool.m4 @@ -57,7 +57,7 @@ m4_defun([LT_PREREQ], m4_defun([_LT_CHECK_BUILDDIR], [case `pwd` in *\ * | *\ *) - AC_MSG_WARN([Libtool does not cope well with whitespace in \`pwd\`]) ;; + AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;; esac ]) diff --git a/libltdl/m4/ltdl.m4 b/libltdl/m4/ltdl.m4 index e506ce8b1..476abc9d2 100644 --- a/libltdl/m4/ltdl.m4 +++ b/libltdl/m4/ltdl.m4 @@ -154,7 +154,7 @@ m4_defun([_LTDL_INSTALLABLE], if test x"${lt_lib_ltdl-no}" = xyes; then if test x"$enable_ltdl_install" != xyes; then # Don't overwrite $prefix/lib/libltdl.la without --enable-ltdl-install - AC_MSG_WARN([not overwriting libltdl at $prefix, force with \`--enable-ltdl-install']) + AC_MSG_WARN([not overwriting libltdl at $prefix, force with `--enable-ltdl-install']) enable_ltdl_install=no fi elif test x"$enable_ltdl_install" = xno; then @@ -287,7 +287,7 @@ AC_ARG_WITH([ltdl_include], if test -n "$with_ltdl_include"; then if test -f "$with_ltdl_include/ltdl.h"; then : else - AC_MSG_ERROR([invalid ltdl include directory: \`$with_ltdl_include']) + AC_MSG_ERROR([invalid ltdl include directory: `$with_ltdl_include']) fi else with_ltdl_include=no @@ -300,7 +300,7 @@ AC_ARG_WITH([ltdl_lib], if test -n "$with_ltdl_lib"; then if test -f "$with_ltdl_lib/libltdl.la"; then : else - AC_MSG_ERROR([invalid ltdl library directory: \`$with_ltdl_lib']) + AC_MSG_ERROR([invalid ltdl library directory: `$with_ltdl_lib']) fi else with_ltdl_lib=no @@ -323,7 +323,7 @@ case ,$with_included_ltdl,$with_ltdl_include,$with_ltdl_lib, in LTDLINCL= ;; ,no*,no,*) - AC_MSG_ERROR([\`--with-ltdl-include' and \`--with-ltdl-lib' options must be used together]) + AC_MSG_ERROR([`--with-ltdl-include' and `--with-ltdl-lib' options must be used together]) ;; *) with_included_ltdl=no LIBLTDL="-L$with_ltdl_lib -lltdl"