automake-patches
[Top][All Lists]
Advanced

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

[SCM] GNU Automake branch, master, updated. Release-1-10-107-gff1ca40


From: Ralf Wildenhues
Subject: [SCM] GNU Automake branch, master, updated. Release-1-10-107-gff1ca40
Date: Sun, 13 Jan 2008 19:07:37 +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 Automake".

http://git.sv.gnu.org/gitweb/?p=automake.git;a=commitdiff;h=ff1ca406e6045baf41ce3611623c6a09d1f136be

The branch, master has been updated
       via  ff1ca406e6045baf41ce3611623c6a09d1f136be (commit)
       via  1cffd11eba0784a16e2ef2f518b50b102100cd3f (commit)
       via  74dc99925da8850d2ebb6e85fc00597b348685b1 (commit)
       via  16ef9da682da9e3d0a4c045fc7d95294d266cc4c (commit)
      from  d4b81e606918c3b492f9da5f04c1b51f205be6db (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 ff1ca406e6045baf41ce3611623c6a09d1f136be
Author: Ralf Wildenhues <address@hidden>
Date:   Sun Jan 13 18:06:56 2008 +0100

    Fix permissions of config.sub

commit 1cffd11eba0784a16e2ef2f518b50b102100cd3f
Author: Ralf Wildenhues <address@hidden>
Date:   Sun Jan 13 18:05:44 2008 +0100

    Do not fail if `autoupdate' is not present.
    
    * tests/obsolete.test: Check for presence of autoupdate.  Apparently,
    FreeBSD may install the other Autoconf programs without a version
    suffix but not autoupdate.

commit 74dc99925da8850d2ebb6e85fc00597b348685b1
Author: Ralf Wildenhues <address@hidden>
Date:   Sun Jan 13 18:05:04 2008 +0100

    Fix Heisenbug trying to unset a sometimes-not-set variable.
    
    * tests/check5.test: Do not error out upon `unset TESTS' due to
    `set -e', in case TESTS was not set.
    * tests/color.test: Likewise.

commit 16ef9da682da9e3d0a4c045fc7d95294d266cc4c
Author: Ralf Wildenhues <address@hidden>
Date:   Sun Jan 13 18:04:16 2008 +0100

    * doc/automake.texi (amhello Explained): Fix odd sentence.
    Report by address@hidden

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

Summary of changes:
 ChangeLog           |   15 +++++++++++++++
 doc/automake.texi   |    2 +-
 tests/check5.test   |    4 ++--
 tests/color.test    |    4 ++--
 tests/obsolete.test |    4 +++-
 5 files changed, 23 insertions(+), 6 deletions(-)
 mode change 100644 => 100755 lib/config.sub

diff --git a/ChangeLog b/ChangeLog
index 6994314..c6a1992 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,18 @@
+2008-01-13  Ralf Wildenhues  <address@hidden>
+
+       Do not fail if `autoupdate' is not present.
+       * tests/obsolete.test: Check for presence of autoupdate.  Apparently,
+       FreeBSD may install the other Autoconf programs without a version
+       suffix but not autoupdate.
+
+       Fix Heisenbug trying to unset a sometimes-not-set variable.
+       * tests/check5.test: Do not error out upon `unset TESTS' due to
+       `set -e', in case TESTS was not set.
+       * tests/color.test: Likewise.
+
+       * doc/automake.texi (amhello Explained): Fix odd sentence.
+       Report by address@hidden
+
 2008-01-12  Ralf Wildenhues  <address@hidden>
 
        * m4/init.m4 (_AC_AM_CONFIG_HEADER_HOOK): Rewrite to be more
diff --git a/doc/automake.texi b/doc/automake.texi
index e1c0c31..8e5bc5d 100644
--- a/doc/automake.texi
+++ b/doc/automake.texi
@@ -1518,7 +1518,7 @@ Index, autoconf, The Autoconf Manual}).  The macros that 
start with
 (@pxref{Macro Index}).
 
 The first two lines of @file{configure.ac} initialize Autoconf and
-Automake.  @code{AC_INIT} takes in parameters the name of the package,
+Automake.  @code{AC_INIT} takes in as parameters the name of the package,
 its version number, and a contact address for bug-reports about the
 package (this address is output at the end of @code{./configure
 --help}, for instance).  When adapting this setup to your own package,
diff --git a/lib/config.sub b/lib/config.sub
old mode 100644
new mode 100755
diff --git a/tests/check5.test b/tests/check5.test
index a1dea94..3c713e9 100755
--- a/tests/check5.test
+++ b/tests/check5.test
@@ -1,5 +1,5 @@
 #! /bin/sh
-# Copyright (C) 2006, 2007  Free Software Foundation, Inc.
+# Copyright (C) 2006, 2007, 2008  Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -46,7 +46,7 @@ END
 cp one.c two.c
 
 ./configure
-unset TESTS
+unset TESTS || :
 $MAKE check
 test -f ok
 EXEEXT=.bin $MAKE -e print-tests >output
diff --git a/tests/color.test b/tests/color.test
index 7f2027f..5b51287 100755
--- a/tests/color.test
+++ b/tests/color.test
@@ -1,5 +1,5 @@
 #! /bin/sh
-# Copyright (C) 2007  Free Software Foundation, Inc.
+# Copyright (C) 2007, 2008  Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -89,7 +89,7 @@ spawn $env(MAKE) -e check
 expect eof
 END
 
-unset TESTS
+unset TESTS || :
 
 AM_COLOR_TESTS=always $MAKE -e check >stdout && { cat stdout; exit 1; }
 cat stdout
diff --git a/tests/obsolete.test b/tests/obsolete.test
index 09c1ce7..a27a215 100755
--- a/tests/obsolete.test
+++ b/tests/obsolete.test
@@ -1,5 +1,5 @@
 #! /bin/sh
-# Copyright (C) 1996, 2001, 2002, 2007  Free Software Foundation, Inc.
+# Copyright (C) 1996, 2001, 2002, 2007, 2008  Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -16,6 +16,8 @@
 
 # Test to make sure obsolete macros can be autoupdated.
 
+set x ${AUTOUPDATE-autoupdate}
+required=$2
 . ./defs || exit 1
 
 cat > configure.in << 'END'


hooks/post-receive
--
GNU Automake




reply via email to

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