diff options
-rw-r--r-- | Makefile.am | 2 | ||||
-rwxr-xr-x | tools/tinderbox_build | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index 208dbbab..c495a700 100644 --- a/Makefile.am +++ b/Makefile.am @@ -27,7 +27,7 @@ install-root: tap: cd @TAP_DIR@ && $(MAKE) -test test-debug: tap +test test-debug: cd lib && $(MAKE) $@ if test "$(PERLMODS_DIR)" != ""; then cd perlmods && $(MAKE) $@; fi cd plugins && $(MAKE) $@ diff --git a/tools/tinderbox_build b/tools/tinderbox_build index e8a3e2e0..70fb07a3 100755 --- a/tools/tinderbox_build +++ b/tools/tinderbox_build @@ -242,8 +242,8 @@ sub SetupPath { sub configure { # Configure - print LOG "./configure --enable-libtap $ConfigureArgs\n"; - open (CONFIGURE, "./configure --enable-libtap $ConfigureArgs 2>&1 |") || die "../configure: $!\n"; + print LOG "./configure $ConfigureArgs\n"; + open (CONFIGURE, "./configure $ConfigureArgs 2>&1 |") || die "../configure: $!\n"; while (<CONFIGURE>) { print $_; print LOG $_; |