From: Ileana Dumitrescu Date: Thu, 10 Oct 2024 17:22:28 +0000 (+0300) Subject: Fix test failures from LT_DOLLAR_SIGN placement X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d0a2405f867a751bdf74666ef737e8307e443229;p=thirdparty%2Flibtool.git Fix test failures from LT_DOLLAR_SIGN placement * configure.ac: Remove AC_SUBST for LT_DOLLAR_SIGN. * m4/ltargz.m4: Add AC_SUBST for LT_DOLLAR_SIGN. --- diff --git a/configure.ac b/configure.ac index dd611b967..dee87e8ec 100644 --- a/configure.ac +++ b/configure.ac @@ -166,9 +166,6 @@ AC_SUBST([to_tool_file_cmd])dnl # Propagate --enable-aix-soname option to the testsuite. AC_SUBST([with_aix_soname])dnl -# Avoid non-POSIX variable name -AC_SUBST([LT_DOLLAR_SIGN],[$])dnl - ## ---------------------- ## ## Gnulib initialisation. ## ## ---------------------- ## diff --git a/m4/ltargz.m4 b/m4/ltargz.m4 index b93c28240..6c24f1766 100644 --- a/m4/ltargz.m4 +++ b/m4/ltargz.m4 @@ -8,7 +8,7 @@ # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. -# serial 2 ltargz.m4 +# serial 3 ltargz.m4 AC_DEFUN([LT_FUNC_ARGZ], [ dnl Required for use of '$SED' in Cygwin configuration. @@ -74,4 +74,7 @@ AS_IF([test -z "$LT_ARGZ_H"], AC_LIBOBJ([lt__argz])])]) AC_SUBST([LT_ARGZ_H]) + +# Avoid non-POSIX variable name +AC_SUBST([LT_DOLLAR_SIGN],[$])dnl ])