[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[SCM] GNU Automake branch, branch-1-10, updated. Release-1-10-46-g876317
From: |
Ralf Wildenhues |
Subject: |
[SCM] GNU Automake branch, branch-1-10, updated. Release-1-10-46-g8763170 |
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=87631702de68b2a3481d50686bf1b98bcee9628e
The branch, branch-1-10 has been updated
via 87631702de68b2a3481d50686bf1b98bcee9628e (commit)
from d9f29f9126d7a01b2c431a880d7ce4520fbe2d4e (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 87631702de68b2a3481d50686bf1b98bcee9628e
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 5dd7c48..147dfe1 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 26b3085..fcb8192 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -409,6 +409,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 fb46e33..09b404a 100644
--- a/tests/Makefile.in
+++ b/tests/Makefile.in
@@ -541,6 +541,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
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [SCM] GNU Automake branch, branch-1-10, updated. Release-1-10-46-g8763170,
Ralf Wildenhues <=