aboutsummaryrefslogtreecommitdiff
path: root/tools/tinderbox_build
diff options
context:
space:
mode:
authorGravatar Holger Weiss <hweiss@users.sourceforge.net> 2007-07-27 15:49:01 +0000
committerGravatar Holger Weiss <hweiss@users.sourceforge.net> 2007-07-27 15:49:01 +0000
commitff8bf04d3aed0a2e6abac1178a3602defd14b854 (patch)
tree7e33add5300d42418ccc12c2a1c7b56461abcb3e /tools/tinderbox_build
parent0a02314e8d520766a9a00712ab49c02f1ebb7a63 (diff)
downloadmonitoring-plugins-ff8bf04d3aed0a2e6abac1178a3602defd14b854.tar.gz
If the TMPDIR environment variable is set, use that instead of "/tmp" as
the installation directory. git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1767 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'tools/tinderbox_build')
-rwxr-xr-xtools/tinderbox_build5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/tinderbox_build b/tools/tinderbox_build
index 1ace2b03..70fb07a3 100755
--- a/tools/tinderbox_build
+++ b/tools/tinderbox_build
@@ -21,6 +21,7 @@ chomp($myhost);
my ($host, $junk) = split(/\./, $myhost);
my $BuildAdministrator = $ENV{TINDERBOX_BUILD_ADMIN} || "$ENV{'USER'}\@$myhost";
+my $TmpDir = $ENV{TMPDIR} || "/tmp";
#Default values of cmdline opts
my $ReportStatus = 0; # Do not send results to server
@@ -266,14 +267,14 @@ sub make {
sub maketest {
# Tests
print LOG "LANG=C make test 2>&1\n";
- open( MAKE, "LANG=C make test && make install DESTDIR=/tmp/tinderbox_build.$$ && make install-strip DESTDIR=/tmp/tinderbox_build2.$$ 2>&1 |");
+ open( MAKE, "LANG=C make test && make install DESTDIR=$TmpDir/tinderbox_build.$$ && make install-strip DESTDIR=$TmpDir/tinderbox_build2.$$ 2>&1 |");
while ( <MAKE> ) {
print $_;
print LOG $_;
}
close( MAKE);
my $rc = $?;
- system("rm -fr /tmp/tinderbox_build.$$ /tmp/tinderbox_build2.$$");
+ system("rm -fr $TmpDir/tinderbox_build.$$ $TmpDir/tinderbox_build2.$$");
return ! $rc;
}