From: Peter O'Gorman Date: Sat, 31 Jan 2004 12:03:29 +0000 (+0000) Subject: * m4/libtool.m4 (_LT_CONFIG_STATUS_DECLARE): Change `echo to X-Git-Tag: release-1-9b~189 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=56ffee0e551ec26a3b8631996c0ca4b87264f8c5;p=thirdparty%2Flibtool.git * m4/libtool.m4 (_LT_CONFIG_STATUS_DECLARE): Change `echo to `$echo, causes problems when builtin echo is broken. Reported by Ralf Wildenhues . --- diff --git a/ChangeLog b/ChangeLog index 1ae7630d0..413a4b2ac 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2004-01-31 Peter O'Gorman + + * m4/libtool.m4 (_LT_CONFIG_STATUS_DECLARE): Change `echo to + `$echo, causes problems when builtin echo is broken. Reported + by Ralf Wildenhues . + 2004-01-27 Scott James Remnant This fixes release procedure problems discovered whilst making diff --git a/m4/libtool.m4 b/m4/libtool.m4 index 8b7326fce..d5a7b1461 100644 --- a/m4/libtool.m4 +++ b/m4/libtool.m4 @@ -362,7 +362,7 @@ m4_define([_lt_decl_all_varnames], # declaration there will have the same value as in `configure'. VARNAME # must have a single quote delimited value for this to work. m4_define([_LT_CONFIG_STATUS_DECLARE], -[$1='`echo "X$][$1" | $Xsed -e "$delay_single_quote_subst"`']) +[$1='`$echo "X$][$1" | $Xsed -e "$delay_single_quote_subst"`']) # _LT_CONFIG_STATUS_DECLARATIONS @@ -372,7 +372,7 @@ m4_define([_LT_CONFIG_STATUS_DECLARE], # embedded single quotes properly. In configure, this macro expands # each variable declared with _LT_DECL (and _LT_TAGDECL) into: # -# ='`echo "X$" | $Xsed -e "$delay_single_quote_subst"`' +# ='`$echo "X$" | $Xsed -e "$delay_single_quote_subst"`' m4_define([_LT_CONFIG_STATUS_DECLARATIONS], [m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames), [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])])