summaryrefslogtreecommitdiffstats
path: root/tools/tinderbox_build
diff options
context:
space:
mode:
authorThomas Guyot-Sionnest <dermoth@aei.ca>2009-01-06 05:39:57 (GMT)
committerThomas Guyot-Sionnest <dermoth@aei.ca>2009-01-06 05:39:57 (GMT)
commitc74e49f365e50eddf0b42d136abd0b5c29871093 (patch)
treed7b362e0c844c91d7dd0312d9fa69dba3db6683c /tools/tinderbox_build
parent1c62d7875058b60e19f930f6c13cb510c098d958 (diff)
downloadmonitoring-plugins-c74e49f365e50eddf0b42d136abd0b5c29871093.tar.gz
tinderbox_build: Add --enable-libtap configure option
Diffstat (limited to 'tools/tinderbox_build')
-rwxr-xr-xtools/tinderbox_build4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/tinderbox_build b/tools/tinderbox_build
index b908da8..aad0fa4 100755
--- a/tools/tinderbox_build
+++ b/tools/tinderbox_build
@@ -246,8 +246,8 @@ sub SetupPath {
246 246
247sub configure { 247sub configure {
248 # Configure 248 # Configure
249 print LOG "./configure $ConfigureArgs\n"; 249 print LOG "./configure --enable-libtap $ConfigureArgs\n";
250 open (CONFIGURE, "./configure $ConfigureArgs 2>&1 |") || die "../configure: $!\n"; 250 open (CONFIGURE, "./configure --enable-libtap $ConfigureArgs 2>&1 |") || die "../configure: $!\n";
251 while (<CONFIGURE>) { 251 while (<CONFIGURE>) {
252 print $_; 252 print $_;
253 print LOG $_; 253 print LOG $_;