branch: development commit d0a2405f867a751bdf74666ef737e8307e443229 Author: Ileana Dumitrescu <ileanadumitresc...@gmail.com> AuthorDate: Thu Oct 10 20:22:28 2024 +0300
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. --- configure.ac | 3 --- m4/ltargz.m4 | 5 ++++- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index dd611b96..dee87e8e 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 b93c2824..6c24f176 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 ])