]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* acgeneral.m4 (_AC_RUN_IFELSE): `==' in test is not portable,
authorPavel Roskin <proski@gnu.org>
Mon, 20 Nov 2000 16:50:13 +0000 (16:50 +0000)
committerPavel Roskin <proski@gnu.org>
Mon, 20 Nov 2000 16:50:13 +0000 (16:50 +0000)
replace with `='.

ChangeLog
acgeneral.m4
lib/autoconf/general.m4

index 0a1300b7c066fc57c3b6010ad0418b0d29189ed5..c662ec4e0414ea26ae21b130261123351ba7094e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-11-20  Pavel Roskin  <proski@gnu.org>
+
+       * acgeneral.m4 (_AC_RUN_IFELSE): `==' in test is not portable,
+       replace with `='.
+
 2000-11-17  Akim Demaille  <akim@epita.fr>
 
        * acgeneral.m4 (_AC_INIT_DEFAULTS): Also include `PATH' and
index c8843e9a787a0626660628231fdb86a41ebf51a7..4e97bcf9092bdacca6903eb6c854ce97ba8777f9 100644 (file)
@@ -2892,7 +2892,7 @@ rm -f conftest$ac_exeext
 AC_TRY_EVAL(ac_link) &&
   (./conftest$ac_exeext) >&AS_MESSAGE_LOG_FD 2>&1;
 ac_status=$?
-AS_IFELSE([test $ac_status == 0],
+AS_IFELSE([test $ac_status = 0],
           [$2],
 [echo "$as_me: program exited with status $ac_status" >&AS_MESSAGE_LOG_FD
 echo "$as_me: failed program was:" >&AS_MESSAGE_LOG_FD
index c8843e9a787a0626660628231fdb86a41ebf51a7..4e97bcf9092bdacca6903eb6c854ce97ba8777f9 100644 (file)
@@ -2892,7 +2892,7 @@ rm -f conftest$ac_exeext
 AC_TRY_EVAL(ac_link) &&
   (./conftest$ac_exeext) >&AS_MESSAGE_LOG_FD 2>&1;
 ac_status=$?
-AS_IFELSE([test $ac_status == 0],
+AS_IFELSE([test $ac_status = 0],
           [$2],
 [echo "$as_me: program exited with status $ac_status" >&AS_MESSAGE_LOG_FD
 echo "$as_me: failed program was:" >&AS_MESSAGE_LOG_FD