1 Commits
8.62 ... 8.63

Author SHA1 Message Date
joey
33a60c1974 releasing version 8.63 2006-02-14 18:36:15 +00:00
3 changed files with 12 additions and 4 deletions

View File

@@ -165,8 +165,8 @@ sub unpack {
close RPMLIST; close RPMLIST;
foreach my $file (`cd $workdir; find ./`) { foreach my $file (`cd $workdir; find ./`) {
chomp $file; chomp $file;
if (! $seenfiles{$file} && -d $file && ! -l $file) { if (! $seenfiles{$file} && -d "$workdir/$file" && ! -l "$workdir/$file") {
$this->do("chmod 755 $file"); $this->do("chmod 755 $workdir/$file");
} }
} }
@@ -397,7 +397,7 @@ sub build {
$opts="--target ".$this->arch; $opts="--target ".$this->arch;
} }
$opts.=" $ENV{RPMBUILDOPTS}" if exists $ENV{RPMBUILDOPTS}; $opts.=" $ENV{RPMBUILDOPT}" if exists $ENV{RPMBUILDOPT};
my $command="cd $dir; $buildcmd -bb $opts ".$this->name."-".$this->version."-".$this->release.".spec"; my $command="cd $dir; $buildcmd -bb $opts ".$this->name."-".$this->version."-".$this->release.".spec";
my $log=$this->runpipe(1, "$command 2>&1"); my $log=$this->runpipe(1, "$command 2>&1");
if ($?) { if ($?) {

View File

@@ -244,7 +244,7 @@ B<alien> recognizes the following environemnt variables:
=over 4 =over 4
=item RPMBUILDOPT =item RPMBUILDOPTS
Options to pass to rpm when it is building a package. Options to pass to rpm when it is building a package.

8
debian/changelog vendored
View File

@@ -1,3 +1,11 @@
alien (8.63) unstable; urgency=low
* Correct code to properly use RPMBUILDOPT (not RPMBUILDOPTS). Closes: #352816
* Corrected fix for bug #352810 to look at and chmod the right directories.
Closes: #352810
-- Joey Hess <joeyh@debian.org> Tue, 14 Feb 2006 13:28:22 -0500
alien (8.62) unstable; urgency=low alien (8.62) unstable; urgency=low
* Fix a bug in conffile script extraction from tgz files (caused by return * Fix a bug in conffile script extraction from tgz files (caused by return