summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d41a33a)
raw | patch | inline | side by side (parent: d41a33a)
author | Thomas Guyot-Sionnest <dermoth@aei.ca> | |
Wed, 18 Mar 2009 07:30:40 +0000 (03:30 -0400) | ||
committer | Thomas Guyot-Sionnest <dermoth@aei.ca> | |
Wed, 18 Mar 2009 07:34:39 +0000 (03:34 -0400) |
tools/tinderbox_build | patch | blob | history |
diff --git a/tools/tinderbox_build b/tools/tinderbox_build
index 04c691e271904144d9a04169282b01ed90d5040f..12528d9ba400ee8203f58365ba6508243de6b9e9 100755 (executable)
--- a/tools/tinderbox_build
+++ b/tools/tinderbox_build
sub configure {
# Configure
- print LOG "./configure --enable-extra-opts --enable-libtap $ConfigureArgs\n";
+ print LOG "./configure --enable-extra-opts --enable-libtap $ConfigureArgs 2>&1\n";
open (CONFIGURE, "./configure --enable-extra-opts --enable-libtap $ConfigureArgs 2>&1 |") || die "../configure: $!\n";
while (<CONFIGURE>) {
print $_;
sub maketest {
# Tests
- print LOG "LANG=C make test 2>&1\n";
- open( MAKE, "LANG=C make test && make install DESTDIR=$TmpDir/tinderbox_build.$$ && make install-strip DESTDIR=$TmpDir/tinderbox_build2.$$ 2>&1 |");
+ print LOG "LANG=C make test 2>&1 && make install DESTDIR=$TmpDir/tinderbox_build.$$ 2>&1 && make install-strip DESTDIR=$TmpDir/tinderbox_build2.$$ 2>&1\n";
+ open( MAKE, "LANG=C make test 2>&1 && make install DESTDIR=$TmpDir/tinderbox_build.$$ 2>&1 && make install-strip DESTDIR=$TmpDir/tinderbox_build2.$$ 2>&1 |");
while ( <MAKE> ) {
print $_;
print LOG $_;