Code

Removed libtap configuration for the moment, as tinderbox builds
authorTon Voon <tonvoon@users.sourceforge.net>
Tue, 8 Jul 2008 10:09:11 +0000 (10:09 +0000)
committerTon Voon <tonvoon@users.sourceforge.net>
Tue, 8 Jul 2008 10:09:11 +0000 (10:09 +0000)
are breaking

git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2020 f882894a-f735-0410-b71e-b25c423dba1c

Makefile.am
tools/tinderbox_build

index 208dbbabf689eee5ddfd7f327313647fa01334d9..c495a700f14b25fd6b787e81cd6c45fad287fc31 100644 (file)
@@ -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) $@
index e8a3e2e09e8fad0cd9b4b8d5e84eec82d3897bf1..70fb07a36d249708c84a22722085c11efd975561 100755 (executable)
@@ -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 $_;