From: Akim Demaille Date: Fri, 13 Oct 2000 10:15:56 +0000 (+0000) Subject: * acgeneral.m4 (AC_LINKER_OPTION): Ahem, err, use `$' when X-Git-Tag: autoconf-2.50~575 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aee199fcb2df1b0b06334e728583e506c935a7bf;p=thirdparty%2Fautoconf.git * acgeneral.m4 (AC_LINKER_OPTION): Ahem, err, use `$' when consulting a variable... --- diff --git a/ChangeLog b/ChangeLog index 7112d9954..ca8d5bde6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-10-13 Akim Demaille + + * acgeneral.m4 (AC_LINKER_OPTION): Ahem, err, use `$' when + consulting a variable... + 2000-10-13 Akim Demaille * acgeneral.m4: Typos in comments spotted by Pavel. diff --git a/acgeneral.m4 b/acgeneral.m4 index 7708e0b24..f70528972 100644 --- a/acgeneral.m4 +++ b/acgeneral.m4 @@ -5393,7 +5393,7 @@ fi # doesn't currently support. # FIXME: Get rid of this macro. AC_DEFUN([AC_LINKER_OPTION], -[if test "ac_gnu_compiler" = yes; then +[if test "$ac_gnu_compiler" = yes; then for ac_link_opt in $1; do $2="[$]$2 -Xlinker $ac_link_opt" done diff --git a/lib/autoconf/general.m4 b/lib/autoconf/general.m4 index 7708e0b24..f70528972 100644 --- a/lib/autoconf/general.m4 +++ b/lib/autoconf/general.m4 @@ -5393,7 +5393,7 @@ fi # doesn't currently support. # FIXME: Get rid of this macro. AC_DEFUN([AC_LINKER_OPTION], -[if test "ac_gnu_compiler" = yes; then +[if test "$ac_gnu_compiler" = yes; then for ac_link_opt in $1; do $2="[$]$2 -Xlinker $ac_link_opt" done