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-69-ge647730


From: Ralf Wildenhues
Subject: [SCM] GNU Automake branch, master, updated. Release-1-10-69-ge647730
Date: Sun, 18 Nov 2007 15:26:22 +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=e6477308a15213f3625d18bb309392bfc1ce2ea5

The branch, master has been updated
       via  e6477308a15213f3625d18bb309392bfc1ce2ea5 (commit)
      from  37a90f4282695a847a0ad1fbc03db906b2e21d5a (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 e6477308a15213f3625d18bb309392bfc1ce2ea5
Author: Ralf Wildenhues <address@hidden>
Date:   Sun Nov 18 16:23:52 2007 +0100

    * tests/output13.test: New test.
    * tests/Makefile.am: Adjust.
    Prompted by report from Bruno Haible in
    <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00479.html>.

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

Summary of changes:
 ChangeLog                            |    5 ++++
 tests/Makefile.am                    |    1 +
 tests/Makefile.in                    |    1 +
 tests/{exdir3.test => output13.test} |   35 ++++++++++++++++++++++++---------
 4 files changed, 32 insertions(+), 10 deletions(-)
 copy tests/{exdir3.test => output13.test} (64%)

diff --git a/ChangeLog b/ChangeLog
index c4ef88d..0c7d2d4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2007-11-18  Ralf Wildenhues  <address@hidden>
 
+       * tests/output13.test: New test.
+       * tests/Makefile.am: Adjust.
+       Prompted by report from Bruno Haible in
+       <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00479.html>.
+
        Fix signal handling in aclocal.
        * aclocal.in (unlink_tmp): If invoked by a signal, note so
        in verbose mode.  Reinstall default signal handler and reraise,
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 3c586a1..c4e7fc6 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -416,6 +416,7 @@ output9.test \
 output10.test \
 output11.test \
 output12.test \
+output13.test \
 overrid.test \
 parse.test \
 percent.test \
diff --git a/tests/Makefile.in b/tests/Makefile.in
index b446130..e5e71ef 100644
--- a/tests/Makefile.in
+++ b/tests/Makefile.in
@@ -564,6 +564,7 @@ output9.test \
 output10.test \
 output11.test \
 output12.test \
+output13.test \
 overrid.test \
 parse.test \
 percent.test \
diff --git a/tests/exdir3.test b/tests/output13.test
similarity index 64%
copy from tests/exdir3.test
copy to tests/output13.test
index c3f33bc..05b8ea3 100755
--- a/tests/exdir3.test
+++ b/tests/output13.test
@@ -18,24 +18,39 @@
 # the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 # Boston, MA 02110-1301, USA.
 
-# Test to make sure pkgdatadir can be overridden via AC_SUBST.
+# Make sure an AC_CONFIG_FILES, AC_CONFIG_LINKS, and AC_CONFIG_COMMANDS
+# are not prerequisites of `all'.
 
 . ./defs || exit 1
 
 set -e
 
-cat >>configure.in <<'EOF'
-AC_SUBST([pkgdatadir], ["FOO"])
+cat >> configure.in << \END
+AC_SUBST([FOO], [foo])
+if $create; then
+  AC_CONFIG_FILES([file])
+  AC_CONFIG_LINKS([link:input])
+  AC_CONFIG_COMMANDS([stamp], [echo stamp > stamp])
+fi
 AC_OUTPUT
-EOF
+END
 
-cat > Makefile.am << 'EOF'
-showme:
-       @echo $(pkgdatadir)
-EOF
+: >Makefile.am
+
+echo link > input
+echo @FOO@ >file.in
 
 $ACLOCAL
 $AUTOCONF
 $AUTOMAKE
-./configure
-$MAKE showme | grep FOO
+
+./configure create=false
+$MAKE
+test ! -f file
+test ! -f link
+test ! -f stamp
+
+./configure create=:
+test -f file
+test -f link
+test -f stamp


hooks/post-receive
--
GNU Automake




reply via email to

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