autoconf-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU Autoconf source repository branch, master, updated. v2.63-196-


From: Ralf Wildenhues
Subject: [SCM] GNU Autoconf source repository branch, master, updated. v2.63-196-g9aa63de
Date: Sun, 16 Nov 2008 16:55:52 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Autoconf source repository".

http://git.sv.gnu.org/gitweb/?p=autoconf.git;a=commitdiff;h=9aa63de3e86c7c81e831c2462210d9d78be72d55

The branch, master has been updated
       via  9aa63de3e86c7c81e831c2462210d9d78be72d55 (commit)
      from  cc854cd040b2e542f6a0365b28beefd30a2bd288 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 9aa63de3e86c7c81e831c2462210d9d78be72d55
Author: Ralf Wildenhues <address@hidden>
Date:   Sun Nov 16 17:54:54 2008 +0100

    Do not use read-only variable $status.
    
    * tests/compile.at (AC_RUN_IFELSE): Use $estatus instead of
    $status, for zsh.
    
    Signed-off-by: Ralf Wildenhues <address@hidden>

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog        |    6 ++++++
 tests/compile.at |   14 +++++++-------
 2 files changed, 13 insertions(+), 7 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 81f28fb..ec89991 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-11-16  Ralf Wildenhues  <address@hidden>
+
+       Do not use read-only variable $status.
+       * tests/compile.at (AC_RUN_IFELSE): Use $estatus instead of
+       $status, for zsh.
+
 2008-11-15  Eric Blake  <address@hidden>
 
        Use the new AS_FOR function.
diff --git a/tests/compile.at b/tests/compile.at
index ba931fc..6289960 100644
--- a/tests/compile.at
+++ b/tests/compile.at
@@ -2,7 +2,7 @@
 
 AT_BANNER([Low level compiling/preprocessing macros.])
 
-# Copyright (C) 2000, 2001, 2003, 2005, 2006, 2007 Free Software
+# Copyright (C) 2000, 2001, 2003, 2005, 2006, 2007, 2008 Free Software
 # Foundation, Inc.
 #
 # This program is free software: you can redistribute it and/or modify
@@ -123,16 +123,16 @@ AC_RUN_IFELSE([AC_LANG_PROGRAM([], [return 0])],
 
 AC_RUN_IFELSE([AC_LANG_PROGRAM([], [return 2])],
              [AC_MSG_ERROR([saw `return 2' as a success])],
-             [status=$?
-test $status != 2 &&
-  AC_MSG_ERROR([did not get as 2 exit status: $status])])
+             [estatus=$?
+test $estatus != 2 &&
+  AC_MSG_ERROR([did not get as 2 exit status: $estatus])])
 
 # The old stinky one.
 AC_TRY_RUN([int main () { return 3; }],
           [AC_MSG_ERROR([saw `return 3' as a success])],
-          [status=$?
-test $status != 3 &&
-  AC_MSG_ERROR([did not get 3 as exit status: $status])])
+          [estatus=$?
+test $estatus != 3 &&
+  AC_MSG_ERROR([did not get 3 as exit status: $estatus])])
 
 ]])
 


hooks/post-receive
--
GNU Autoconf source repository




reply via email to

[Prev in Thread] Current Thread [Next in Thread]