Code

tinderbox_build: Add --enable-libtap configure option
authorThomas Guyot-Sionnest <dermoth@aei.ca>
Tue, 6 Jan 2009 05:39:57 +0000 (00:39 -0500)
committerThomas Guyot-Sionnest <dermoth@aei.ca>
Tue, 6 Jan 2009 05:39:57 +0000 (00:39 -0500)
tools/tinderbox_build

index b908da8344d449e736fcf2e8d4e14fb0c3ae8c09..aad0fa446d1ca9cff570db02d0f81761a0f02a2e 100755 (executable)
@@ -246,8 +246,8 @@ sub SetupPath {
 
 sub configure {
        # Configure
-        print LOG "./configure $ConfigureArgs\n";
-        open (CONFIGURE, "./configure $ConfigureArgs 2>&1 |") || die "../configure: $!\n";
+        print LOG "./configure --enable-libtap $ConfigureArgs\n";
+        open (CONFIGURE, "./configure --enable-libtap $ConfigureArgs 2>&1 |") || die "../configure: $!\n";
         while (<CONFIGURE>) {
             print $_;
             print LOG $_;