* Use --target noarch instead of --target=noarch when building rpms.

The latter used to work, but no longer does, due to some change in rpm or
     popt. It also has to come after the -bb.
   * Trap stderr of rpm and debian/rules building packages, and only display if
     the build fails.
This commit is contained in:
joey
2002-01-04 21:12:41 +00:00
parent 15f7f75dfd
commit ea55014024
4 changed files with 15 additions and 6 deletions

View File

@@ -348,14 +348,14 @@ sub build {
# This is the new command line arcgument to make noarch
# rpms. It appeared in rpm version 3.
$opts="--target=noarch" if $rpmarch eq 'noarch';
$opts="--target noarch" if $rpmarch eq 'noarch';
}
$opts.=" $ENV{RPMBUILDOPTS}" if exists $ENV{RPMBUILDOPTS};
my $command="cd $dir; rpm $opts -bb ".$this->name."-".$this->version."-".$this->release.".spec >/dev/null";
my $log=`$command`;
my $command="cd $dir; rpm -bb $opts ".$this->name."-".$this->version."-".$this->release.".spec";
my $log=`$command 2>&1`;
if ($?) {
die "Package build failed. Here's the log:\n", $log;
die "Package build failed. Here's the log of the command ($command):\n", $log;
}
return $rpm;