mirror of
https://github.com/Project-OSS-Revival/alien.git
synced 2026-04-24 14:00:17 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2bb90cb16a | ||
|
|
00018b6425 | ||
|
|
33a60c1974 |
@@ -165,8 +165,8 @@ sub unpack {
|
||||
close RPMLIST;
|
||||
foreach my $file (`cd $workdir; find ./`) {
|
||||
chomp $file;
|
||||
if (! $seenfiles{$file} && -d $file && ! -l $file) {
|
||||
$this->do("chmod 755 $file");
|
||||
if (! $seenfiles{$file} && -d "$workdir/$file" && ! -l "$workdir/$file") {
|
||||
$this->do("chmod 755 $workdir/$file");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -397,7 +397,7 @@ sub build {
|
||||
$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 $log=$this->runpipe(1, "$command 2>&1");
|
||||
if ($?) {
|
||||
|
||||
4
alien.pl
4
alien.pl
@@ -244,7 +244,7 @@ B<alien> recognizes the following environemnt variables:
|
||||
|
||||
=over 4
|
||||
|
||||
=item RPMBUILDOPT
|
||||
=item RPMBUILDOPTS
|
||||
|
||||
Options to pass to rpm when it is building a package.
|
||||
|
||||
@@ -334,7 +334,7 @@ Usage: alien [options] file [...]
|
||||
--version=<version> Specify package version.
|
||||
-p, --to-pkg Generate a Solaris pkg package.
|
||||
-i, --install Install generated package.
|
||||
-g, --generate Unpack, but do not generate a new package.
|
||||
-g, --generate Generate build tree, but do not build package.
|
||||
-c, --scripts Include scripts in package.
|
||||
-v, --verbose Display each command alien runs.
|
||||
--veryverbose Be verbose, and also display output of run commands.
|
||||
|
||||
15
debian/changelog
vendored
15
debian/changelog
vendored
@@ -1,3 +1,18 @@
|
||||
alien (8.64) unstable; urgency=low
|
||||
|
||||
* Minor improvement to usage message as reported in [some random blog
|
||||
somewhere that I happened to read by accident].
|
||||
|
||||
-- Joey Hess <joeyh@debian.org> Thu, 30 Mar 2006 12:51:45 -0500
|
||||
|
||||
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
|
||||
|
||||
* Fix a bug in conffile script extraction from tgz files (caused by return
|
||||
|
||||
Reference in New Issue
Block a user