diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2008-06-26 22:00:08 (GMT) |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2008-06-26 22:00:08 (GMT) |
commit | 6c476db6dcc7aa70a687d09c10e6ad515c290c23 (patch) | |
tree | 01262e224740a0b01fe018eb167b3c46de3a6ea7 /tools | |
parent | 2968a166e2524c5c1c557a12ae8dd6eaf698d7ea (diff) | |
download | monitoring-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-x | tools/setup | 3 | ||||
-rwxr-xr-x | tools/tinderbox_build | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/tools/setup b/tools/setup index 7fdb980..a8d9825 100755 --- a/tools/setup +++ b/tools/setup | |||
@@ -49,3 +49,6 @@ fi | |||
49 | if [ $docbook = 1 ] ; then | 49 | if [ $docbook = 1 ] ; then |
50 | cd doc && make | 50 | cd doc && make |
51 | fi | 51 | fi |
52 | |||
53 | # Untar libtap | ||
54 | cd external && tar --gzip -xf tap-1.01-altinity.tar.gz | ||
diff --git a/tools/tinderbox_build b/tools/tinderbox_build index 70fb07a..e8a3e2e 100755 --- a/tools/tinderbox_build +++ b/tools/tinderbox_build | |||
@@ -242,8 +242,8 @@ sub SetupPath { | |||
242 | 242 | ||
243 | sub configure { | 243 | sub configure { |
244 | # Configure | 244 | # Configure |
245 | print LOG "./configure $ConfigureArgs\n"; | 245 | print LOG "./configure --enable-libtap $ConfigureArgs\n"; |
246 | open (CONFIGURE, "./configure $ConfigureArgs 2>&1 |") || die "../configure: $!\n"; | 246 | open (CONFIGURE, "./configure --enable-libtap $ConfigureArgs 2>&1 |") || die "../configure: $!\n"; |
247 | while (<CONFIGURE>) { | 247 | while (<CONFIGURE>) { |
248 | print $_; | 248 | print $_; |
249 | print LOG $_; | 249 | print LOG $_; |