summaryrefslogtreecommitdiff
path: root/t/tap-common-setup.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/tap-common-setup.sh')
-rw-r--r--t/tap-common-setup.sh11
1 files changed, 8 insertions, 3 deletions
diff --git a/t/tap-common-setup.sh b/t/tap-common-setup.sh
index b15a414ea..25c725b3c 100644
--- a/t/tap-common-setup.sh
+++ b/t/tap-common-setup.sh
@@ -18,9 +18,7 @@
. test-init.sh
-cat >> configure.ac << END
-AC_OUTPUT
-END
+echo AC_OUTPUT >> configure.ac
cat > Makefile.am << 'END'
TEST_LOG_DRIVER = $(srcdir)/tap-driver
@@ -28,6 +26,13 @@ TEST_LOG_COMPILER = cat
TESTS = all.test
END
+cat > test-driver <<'END'
+#!/bin/sh
+echo "$0: required by Automake, but should never be actually used" >&2
+exit 1
+END
+chmod a+x test-driver
+
$ACLOCAL
$AUTOCONF
$AUTOMAKE