mirror of
https://github.com/Project-OSS-Revival/alien.git
synced 2026-04-25 14:00:17 +00:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
33a60c1974 |
@@ -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 ($?) {
|
||||||
|
|||||||
2
alien.pl
2
alien.pl
@@ -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
8
debian/changelog
vendored
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user