Index: branches/eam_branches/ipp-20120405/tools/runbgchip.pl
===================================================================
--- branches/eam_branches/ipp-20120405/tools/runbgchip.pl	(revision 33724)
+++ branches/eam_branches/ipp-20120405/tools/runbgchip.pl	(revision 33949)
@@ -97,5 +97,10 @@
 exit 0 if $pretend;
 
-exit system $command;
+my $rc = system $command;
+my $status = $rc >> 8;
+if ($rc) {
+    print "command returned $rc $status\n";
+}
+exit $status;
 
 
