Bug 6722: [SIGNED-OFF] Cause build output to appear on the screen
authorRobin Sheat <robin@catalyst.net.nz>
Wed, 22 Jun 2011 06:00:24 +0000 (18:00 +1200)
committerChris Cormack <chrisc@catalyst.net.nz>
Sun, 4 Sep 2011 08:14:08 +0000 (20:14 +1200)
This allows the build information to not be suppressed when using
build-git-snapshot. This makes seeing where problems are substantially
easier.

Signed-off-by: Magnus Enger <magnus@enger.priv.no>
Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
debian/build-git-snapshot

index cd0545a..91552ff 100755 (executable)
@@ -58,6 +58,13 @@ sub sys_command_output {
     return map { chomp; $_ } <$command_output>;
 }
 
+sub sys_command_output_screen {
+    my ($command) = @_;
+
+    print "$command\n" if $debug;
+    system($command);
+}
+
 sub everything_is_committed {
     my $filter;
     for ($git_checks) {
@@ -130,7 +137,7 @@ sub build_package {
     sys_command_output( qq{git archive --format=tar --prefix="koha-$newversion/" HEAD | gzip -9 > "../koha_$newversion.tar.gz"} );
 
     my $pdebuildopts = $buildresult ? "--buildresult $buildresult" : "";
-    sys_command_output( "pdebuild $pdebuildopts" );
+    sys_command_output_screen( "pdebuild $pdebuildopts" );
 }
 
 everything_is_committed() or die "cannot build: uncommited changes";