[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Automake-commit] [SCM] GNU Automake branch, branch-1-10, updated. Relea
From: |
Ralf Wildenhues |
Subject: |
[Automake-commit] [SCM] GNU Automake branch, branch-1-10, updated. Release-1-10-1-40-g6cd8e85 |
Date: |
Wed, 08 Oct 2008 21:48:24 +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=6cd8e8589a53a097d8d32c205448b729daa00f22
The branch, branch-1-10 has been updated
via 6cd8e8589a53a097d8d32c205448b729daa00f22 (commit)
from 55d034e07bd98781d146a227829939be57956143 (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 6cd8e8589a53a097d8d32c205448b729daa00f22
Author: Ralf Wildenhues <address@hidden>
Date: Wed Oct 8 23:25:11 2008 +0200
Require texi2dvi in tests, makeinfo may not be enough.
* tests/txinfo16.test: RHEL 5.2 has makeinfo and texi2dvi in
separate packages, so also list the latter as required, as the
test generates DVI and/or PDF output (through distcheck).
* tests/txinfo18.test: Likewise.
* tests/txinfo21.test: Likewise.
* tests/txinfo22.test: Likewise.
* tests/txinfo3.test: Likewise.
* tests/version7.test: Likewise.
* THANKS: Update.
Report by Alexander Martens.
Signed-off-by: Ralf Wildenhues <address@hidden>
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 12 ++++++++++++
THANKS | 1 +
tests/txinfo16.test | 4 ++--
tests/txinfo18.test | 4 ++--
tests/txinfo21.test | 4 ++--
tests/txinfo22.test | 2 +-
tests/txinfo3.test | 5 +++--
tests/version7.test | 4 ++--
8 files changed, 25 insertions(+), 11 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 2c9af92..a9be4f9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,17 @@
2008-10-08 Ralf Wildenhues <address@hidden>
+ Require texi2dvi in tests, makeinfo may not be enough.
+ * tests/txinfo16.test: RHEL 5.2 has makeinfo and texi2dvi in
+ separate packages, so also list the latter as required, as the
+ test generates DVI and/or PDF output (through distcheck).
+ * tests/txinfo18.test: Likewise.
+ * tests/txinfo21.test: Likewise.
+ * tests/txinfo22.test: Likewise.
+ * tests/txinfo3.test: Likewise.
+ * tests/version7.test: Likewise.
+ * THANKS: Update.
+ Report by Alexander Martens.
+
Fix bootstrap to remove read-only directories right.
* bootstrap: Remove automake-$APIVERSION correctly.
diff --git a/THANKS b/THANKS
index 0d0b19f..e353a35 100644
--- a/THANKS
+++ b/THANKS
@@ -9,6 +9,7 @@ Alan Modra address@hidden
Alex Hornby address@hidden
Alex Unleashed address@hidden
Alexander Mai address@hidden
+Alexander Martens address@hidden
Alexander V. Lukyanov address@hidden
Alexander Turbov address@hidden
Alexandre Duret-Lutz address@hidden
diff --git a/tests/txinfo16.test b/tests/txinfo16.test
index c522eaf..a116c90 100755
--- a/tests/txinfo16.test
+++ b/tests/txinfo16.test
@@ -1,5 +1,5 @@
#! /bin/sh
-# Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+# Copyright (C) 2002, 2003, 2008 Free Software Foundation, Inc.
#
# This file is part of GNU Automake.
#
@@ -20,7 +20,7 @@
# Check that info files are not built in $(srcdir).
-required='makeinfo tex'
+required='makeinfo tex texi2dvi'
. ./defs || exit 1
set -e
diff --git a/tests/txinfo18.test b/tests/txinfo18.test
index 08f8d59..0f23e22 100755
--- a/tests/txinfo18.test
+++ b/tests/txinfo18.test
@@ -1,5 +1,5 @@
#! /bin/sh
-# Copyright (C) 2002 Free Software Foundation, Inc.
+# Copyright (C) 2002, 2008 Free Software Foundation, Inc.
#
# This file is part of GNU Automake.
#
@@ -22,7 +22,7 @@
# Only *new* indexes need to be declared at the top-level.
# PR/375.
-required='makeinfo tex'
+required='makeinfo tex texi2dvi'
. ./defs || exit 1
set -e
diff --git a/tests/txinfo21.test b/tests/txinfo21.test
index 5bbcc3b..5c748c1 100755
--- a/tests/txinfo21.test
+++ b/tests/txinfo21.test
@@ -1,5 +1,5 @@
#! /bin/sh
-# Copyright (C) 2003, 2004, 2006 Free Software Foundation, Inc.
+# Copyright (C) 2003, 2004, 2006, 2008 Free Software Foundation, Inc.
#
# This file is part of GNU Automake.
#
@@ -21,7 +21,7 @@
# Test support for building HTML documentation, and the many
# install-DOC flavors.
-required='makeinfo-html tex'
+required='makeinfo-html tex texi2dvi'
. ./defs || exit 1
set -e
diff --git a/tests/txinfo22.test b/tests/txinfo22.test
index 9a2fa74..ec3bfb6 100755
--- a/tests/txinfo22.test
+++ b/tests/txinfo22.test
@@ -24,7 +24,7 @@
# but preserve them in the output.
# Also make sure TEXINFO_TEX is not distributed.
-required='makeinfo tex'
+required='makeinfo tex texi2dvi'
. ./defs || exit 1
set -e
diff --git a/tests/txinfo3.test b/tests/txinfo3.test
index 72fdaed..570c0ea 100755
--- a/tests/txinfo3.test
+++ b/tests/txinfo3.test
@@ -1,5 +1,6 @@
#! /bin/sh
-# Copyright (C) 1997, 2001, 2002, 2003 Free Software Foundation, Inc.
+# Copyright (C) 1997, 2001, 2002, 2003, 2008 Free Software Foundation,
+# Inc.
#
# This file is part of GNU Automake.
#
@@ -20,7 +21,7 @@
# Test to make sure .info-less @setfilename works.
-required='makeinfo tex'
+required='makeinfo tex texi2dvi'
. ./defs || exit 1
set -e
diff --git a/tests/version7.test b/tests/version7.test
index bcd1da6..43727aa 100755
--- a/tests/version7.test
+++ b/tests/version7.test
@@ -1,5 +1,5 @@
#! /bin/sh
-# Copyright (C) 2002 Free Software Foundation, Inc.
+# Copyright (C) 2002, 2008 Free Software Foundation, Inc.
#
# This file is part of GNU Automake.
#
@@ -23,7 +23,7 @@
# is to make sure Makefile.ins get rebuilt when a m4_included file
# changes -- we don't support this feature on non-GNU Makes).
-required='makeinfo tex GNUmake'
+required='makeinfo tex texi2dvi GNUmake'
. ./defs || exit 1
set -e
hooks/post-receive
--
GNU Automake
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Automake-commit] [SCM] GNU Automake branch, branch-1-10, updated. Release-1-10-1-40-g6cd8e85,
Ralf Wildenhues <=