]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
Fix testsuite failures with SHELL=zsh.
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Tue, 3 Nov 2009 21:06:12 +0000 (22:06 +0100)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Tue, 3 Nov 2009 21:06:12 +0000 (22:06 +0100)
* tests/statesave.m4 (AC_STATE_SAVE): Ignore argv and ARGC when
comparing configure variables.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
ChangeLog
tests/local.at

index b6788bdb2106c5050b8a635c10ab57f393599896..639e6942587c7aeebcd0620a322f4f6dfdbbf3c7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2009-11-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
+
+       Fix testsuite failures with SHELL=zsh.
+       * tests/statesave.m4 (AC_STATE_SAVE): Ignore argv and ARGC when
+       comparing configure variables.
+
 2009-11-03  Eric Blake  <ebb9@byu.net>
        and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
index 53c1d6fbb1a90b5b181cbbefe4d421e747bd0198..37ed3ea3b5bc7f2ec90273b970a7465b6af304e3 100644 (file)
@@ -336,6 +336,8 @@ fi
 # - RANDOM [zsh]
 # - SECONDS [zsh]
 # - '$' [zsh]
+# - argv [zsh]
+# - ARGC [zsh]
 #
 # Furthermore, it is okay for a non-cache variable initialized to empty in one
 # run to be unset in another run.  This happens when, for example, cache update
@@ -358,6 +360,8 @@ do
        /^RANDOM=/ d
        /^SECONDS=/ d
        /'\'\\\$\''=/ d
+       /^argv=/ d
+       /^ARGC=/ d
        ' $act_file >at_config_vars-$act_file
 done
 AT_CMP([at_config_vars-$1], [at_config_vars-$2])[]dnl