summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Duret-Lutz <adl@gnu.org>2003-02-12 16:26:41 +0000
committerAlexandre Duret-Lutz <adl@gnu.org>2003-02-12 16:26:41 +0000
commit3354069d5cac826f0020075d4123f8c24cf91eb9 (patch)
tree56a113cc55550b0a242af3db12d77c76fd721d5c
parenta148b233483973c4985ea5ffd507a9263c24f4fb (diff)
downloadautomake-Release-1-7-2b.tar.gz
* tests/defs.in: Handle required=makedepend.Release-1-7-2b
-rw-r--r--ChangeLog2
-rw-r--r--tests/defs.in4
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index f34ca720f..b26230104 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
2003-02-12 Alexandre Duret-Lutz <adl@gnu.org>
+ * tests/defs.in: Handle required=makedepend.
+
* Makefile.am (maintainer-check): Update the diff check
to account for the recent @SHELL@ substitution.
diff --git a/tests/defs.in b/tests/defs.in
index 5e6669d40..08e9c788b 100644
--- a/tests/defs.in
+++ b/tests/defs.in
@@ -102,6 +102,10 @@ then
echo "$me: running $CC -V -dryrun"
( $CC -V -dryrun ) || exit 77
;;
+ makedepend)
+ echo "$me: running makedepend -f-"
+ ( makedepend -f- ) || exit 77
+ ;;
non-root)
# Skip this test case if the user is root.
# We try to append to a read-only file to detect this.