releasing version 8.63

This commit is contained in:
joey
2006-02-14 18:36:15 +00:00
parent f96039ce74
commit 33a60c1974
3 changed files with 12 additions and 4 deletions

View File

@@ -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 ($?) {