]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* libltdl/m4/libtool.m4 (_LT_CHECK_BUILDDIR): No need to escape
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Mon, 17 Mar 2008 22:39:05 +0000 (22:39 +0000)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Mon, 17 Mar 2008 22:39:05 +0000 (22:39 +0000)
backticks in argument to AC_MSG_WARN or AC_MSG_ERROR.
* libltdl/m4/ltdl.m4 (_LTDL_INSTALLABLE, LTDL_INIT): Likewise.

ChangeLog
libltdl/m4/libtool.m4
libltdl/m4/ltdl.m4

index 3faaa03d53cac41e3c91e935578fb32cd3203967..399749eff4713e840b73d52e58f98dc6c81e41c9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-03-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
+
+       * 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  <Ralf.Wildenhues@gmx.de>
 
        * libltdl/config/ltmain.m4sh (NLS nuisances): Fix quoting of
index 55a002d2d006c3ddefe23a8f7374c432820ddfc6..9a700e65cce0f1bae51674b6b041833ab95b2db8 100644 (file)
@@ -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
 ])
 
index e506ce8b151af1b0dd6fe4b12b8f7a6678916e07..476abc9d23cfc286ec2e9d67142e937c75234272 100644 (file)
@@ -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"