(withecho): Remove empty strings at the begin of the command array.
These can be caused by e.g. an emtpy $rootcommando. It is easiest to
filter them out here.
+2007-09-28 Frank Lichtenheld <djpig@debian.org>
+
+ * scripts/dpkg-buildpackage.pl (withecho): Remove
+ empty strings at the begin of the command array.
+ These can be caused by e.g. an emtpy $rootcommando.
+ It is easiest to filter them out here.
+
2007-09-24 Guillem Jover <guillem@debian.org>
* scripts/dpkg-buildpackage.pl (signfile): Do not use absolute path
[ Frank Lichtenheld ]
* Add _MTN to dpkg-source -i default regex. Suggested by Jari Aalto.
* Convert dpkg-buildpackage to a Perl script.
+ Fix some bugs in the new script detected in experimental:
+ Closes: #444362
* dpkg-buildpackage accepts a -j<n> option now which will set
MAKEFLAGS(-j<n>) and DEB_BUILD_OPTIONS(parallel=<n>) accordingly.
parallel=<n> in DEB_BUILD_OPTIONS will be passed to MAKEFLAGS as
sub withecho {
+ shift while !$_[0];
print STDERR " @_\n";
system(@_)
and subprocerr("@_");