* tests/defs.in: Handle required=makedepend.
diff --git a/ChangeLog b/ChangeLog
index f34ca72..b262301 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 5e6669d..08e9c78 100644
--- a/tests/defs.in
+++ b/tests/defs.in
@@ -102,6 +102,10 @@
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.