aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorGravatar Ton Voon <tonvoon@users.sourceforge.net> 2008-06-26 22:00:08 +0000
committerGravatar Ton Voon <tonvoon@users.sourceforge.net> 2008-06-26 22:00:08 +0000
commit6c476db6dcc7aa70a687d09c10e6ad515c290c23 (patch)
tree01262e224740a0b01fe018eb167b3c46de3a6ea7 /tools
parent2968a166e2524c5c1c557a12ae8dd6eaf698d7ea (diff)
downloadmonitoring-plugins-6c476db6dcc7aa70a687d09c10e6ad515c290c23.tar.gz
Adding libtap into distribution to help run C based tests
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2013 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'tools')
-rwxr-xr-xtools/setup3
-rwxr-xr-xtools/tinderbox_build4
2 files changed, 5 insertions, 2 deletions
diff --git a/tools/setup b/tools/setup
index 7fdb980d..a8d98252 100755
--- a/tools/setup
+++ b/tools/setup
@@ -49,3 +49,6 @@ fi
if [ $docbook = 1 ] ; then
cd doc && make
fi
+
+# Untar libtap
+cd external && tar --gzip -xf tap-1.01-altinity.tar.gz
diff --git a/tools/tinderbox_build b/tools/tinderbox_build
index 70fb07a3..e8a3e2e0 100755
--- a/tools/tinderbox_build
+++ b/tools/tinderbox_build
@@ -242,8 +242,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 $_;