diff options
author | Thomas Guyot-Sionnest <dermoth@aei.ca> | 2009-01-06 00:39:57 -0500 |
---|---|---|
committer | Thomas Guyot-Sionnest <dermoth@aei.ca> | 2009-01-06 00:39:57 -0500 |
commit | c74e49f365e50eddf0b42d136abd0b5c29871093 (patch) | |
tree | d7b362e0c844c91d7dd0312d9fa69dba3db6683c /tools/tinderbox_build | |
parent | 1c62d7875058b60e19f930f6c13cb510c098d958 (diff) | |
download | monitoring-plugins-c74e49f365e50eddf0b42d136abd0b5c29871093.tar.gz |
tinderbox_build: Add --enable-libtap configure option
Diffstat (limited to 'tools/tinderbox_build')
-rwxr-xr-x | tools/tinderbox_build | 4 |
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 $_; |