summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile.am2
-rwxr-xr-xtools/tinderbox_build4
2 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am
index 208dbba..c495a70 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -27,7 +27,7 @@ install-root:
27tap: 27tap:
28 cd @TAP_DIR@ && $(MAKE) 28 cd @TAP_DIR@ && $(MAKE)
29 29
30test test-debug: tap 30test test-debug:
31 cd lib && $(MAKE) $@ 31 cd lib && $(MAKE) $@
32 if test "$(PERLMODS_DIR)" != ""; then cd perlmods && $(MAKE) $@; fi 32 if test "$(PERLMODS_DIR)" != ""; then cd perlmods && $(MAKE) $@; fi
33 cd plugins && $(MAKE) $@ 33 cd plugins && $(MAKE) $@
diff --git a/tools/tinderbox_build b/tools/tinderbox_build
index e8a3e2e..70fb07a 100755
--- a/tools/tinderbox_build
+++ b/tools/tinderbox_build
@@ -242,8 +242,8 @@ sub SetupPath {
242 242
243sub configure { 243sub configure {
244 # Configure 244 # Configure
245 print LOG "./configure --enable-libtap $ConfigureArgs\n"; 245 print LOG "./configure $ConfigureArgs\n";
246 open (CONFIGURE, "./configure --enable-libtap $ConfigureArgs 2>&1 |") || die "../configure: $!\n"; 246 open (CONFIGURE, "./configure $ConfigureArgs 2>&1 |") || die "../configure: $!\n";
247 while (<CONFIGURE>) { 247 while (<CONFIGURE>) {
248 print $_; 248 print $_;
249 print LOG $_; 249 print LOG $_;