~ubuntu-branches/ubuntu/hardy/nagios-plugins/hardy-updates

« back to all changes in this revision

Viewing changes to tools/tinderbox_build

  • Committer: Bazaar Package Importer
  • Author(s): Stephan Hermann
  • Date: 2008-01-31 20:21:56 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20080131202156-mllb6q934in9ebzo
Tags: 1.4.11-1ubuntu1
* Merge from debian unstable, remaining changes:
  - Remove build-dep on libsnmp*-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
use Cwd;
15
15
use Time::Local;
16
16
 
17
 
my $Version = '$Revision: 1767 $';
 
17
my $Version = '$Revision: 1866 $';
18
18
 
19
19
my $myhost = hostname;
20
20
chomp($myhost);
266
266
 
267
267
sub maketest {
268
268
        # Tests
269
 
        print LOG "LANG=C make test 2>&1\n";
270
 
        open( MAKE, "LANG=C make test && make install DESTDIR=$TmpDir/tinderbox_build.$$ && make install-strip DESTDIR=$TmpDir/tinderbox_build2.$$ 2>&1 |");
 
269
        print LOG "LANG=C make test-debug 2>&1\n";
 
270
        open( MAKE, "LANG=C make test-debug && make install DESTDIR=$TmpDir/tinderbox_build.$$ && make install-strip DESTDIR=$TmpDir/tinderbox_build2.$$ 2>&1 |");
271
271
        while ( <MAKE> ) {
272
272
                print $_;
273
273
                print LOG $_;