aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorGravatar Thomas Guyot-Sionnest <dermoth@aei.ca> 2009-01-06 00:39:57 -0500
committerGravatar Thomas Guyot-Sionnest <dermoth@aei.ca> 2009-01-06 00:39:57 -0500
commitc74e49f365e50eddf0b42d136abd0b5c29871093 (patch)
treed7b362e0c844c91d7dd0312d9fa69dba3db6683c /tools
parent1c62d7875058b60e19f930f6c13cb510c098d958 (diff)
downloadmonitoring-plugins-c74e49f365e50eddf0b42d136abd0b5c29871093.tar.gz
tinderbox_build: Add --enable-libtap configure option
Diffstat (limited to 'tools')
-rwxr-xr-xtools/tinderbox_build4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/tinderbox_build b/tools/tinderbox_build
index b908da83..aad0fa44 100755
--- a/tools/tinderbox_build
+++ b/tools/tinderbox_build
@@ -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 $_;