From 888ede94c15c83000d057410a254570269f99c42 Mon Sep 17 00:00:00 2001 From: joey Date: Sun, 15 Jul 2001 15:45:54 +0000 Subject: [PATCH] * Moved as many system calls as I can over to shellless execution. There are still a lot that use shell tricks. Should deal with screwey rpms and file names better though. Closes: #105283 * Display build logs after build failures. --- alien.pl | 2 +- debian/changelog | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/alien.pl b/alien.pl index 5c4df77..bc1d6fd 100755 --- a/alien.pl +++ b/alien.pl @@ -364,7 +364,7 @@ foreach my $file (@ARGV) { # Make .orig.tar.gz directory? if ($format eq 'deb' && ! $single && $generate) { # Make .orig.tar.gz directory. - system("cp", "-fa", $package->unpacked_tree, $package->unpacked_tree.".orig") == 0 + system("cp", "-fa", "--", $package->unpacked_tree, $package->unpacked_tree.".orig") == 0 or die "cp -fa failed"; } diff --git a/debian/changelog b/debian/changelog index 6d61fbb..7a2b669 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -alien (7.26) unstable; urgency=low +alien (7.27) unstable; urgency=low * Moved as many system calls as I can over to shellless execution. There are still a lot that use shell tricks. Should deal with screwey