]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* acgeneral.m4 (AC_LINKER_OPTION): Ahem, err, use `$' when
authorAkim Demaille <akim@epita.fr>
Fri, 13 Oct 2000 10:15:56 +0000 (10:15 +0000)
committerAkim Demaille <akim@epita.fr>
Fri, 13 Oct 2000 10:15:56 +0000 (10:15 +0000)
consulting a variable...

ChangeLog
acgeneral.m4
lib/autoconf/general.m4

index 7112d9954286ab555f84d4205e4881e4127c2d2d..ca8d5bde6344f6b5b7161b61e8f1781f209d6c7f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-10-13  Akim Demaille  <akim@epita.fr>
+
+       * acgeneral.m4 (AC_LINKER_OPTION): Ahem, err, use `$' when
+       consulting a variable...
+
 2000-10-13  Akim Demaille  <akim@epita.fr>
 
        * acgeneral.m4: Typos in comments spotted by Pavel.
index 7708e0b2430dc3ab47742554e12e89036fd023f7..f70528972a8c8b0881cf3636058f75564fd6eee6 100644 (file)
@@ -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
index 7708e0b2430dc3ab47742554e12e89036fd023f7..f70528972a8c8b0881cf3636058f75564fd6eee6 100644 (file)
@@ -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