summaryrefslogtreecommitdiff
path: root/tests/cond16.test
diff options
context:
space:
mode:
authorRaja R Harinath <harinath@acm.org>2001-08-08 21:43:59 +0000
committerRaja R Harinath <harinath@acm.org>2001-08-08 21:43:59 +0000
commit8865593973b62744ed71e3c57a24280de27c9dad (patch)
tree9ff73c83b85fe9ece91c04f54d2fd01b99b19547 /tests/cond16.test
parentacb2e40211b716d2e71e8c5926d3940c772f7566 (diff)
downloadautomake-8865593973b62744ed71e3c57a24280de27c9dad.tar.gz
Dissociate testsuite 'make' invocations from outer 'make'.
* tests/defs: Unset the MFLAGS, MAKEFLAGS and MAKELEVEL environment variables. * tests/cond16.test: Use '$MAKE -s', and avoid GNU make dependency. * tests/substref.test: Likewise.
Diffstat (limited to 'tests/cond16.test')
-rwxr-xr-xtests/cond16.test3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/cond16.test b/tests/cond16.test
index 407185d9c..47901b322 100755
--- a/tests/cond16.test
+++ b/tests/cond16.test
@@ -34,7 +34,6 @@ END
$needs_autoconf
(gcc -v) > /dev/null 2>&1 || exit 77
-$needs_gnu_make
set -e
@@ -44,6 +43,6 @@ $AUTOMAKE -a
CC='gcc' ./configure
-val=`$MAKE --no-print-directory echorule`;
+val=`$MAKE -s echorule`;
echo $val
test "x$val" = "xfoo.c foo.o"