summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-07-04 14:47:30 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-07-04 14:47:30 -0400
commit94d16a72764c9a73d4dc2f2e29288cb26c9a65b8 (patch)
tree3eb1907ef814c2a061605ace1454b9bcfcf0b542
parent4bf6d6820d1b1990b83d9637dbc596718f0389f8 (diff)
downloadpristine-tar-94d16a72764c9a73d4dc2f2e29288cb26c9a65b8.tar.gz
pristine-tar-94d16a72764c9a73d4dc2f2e29288cb26c9a65b8.tar.bz2
pristine-tar-94d16a72764c9a73d4dc2f2e29288cb26c9a65b8.zip
Correct -f order to come after --gnu.0.17
-rw-r--r--debian/changelog6
-rwxr-xr-xpristine-gz2
2 files changed, 7 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index a56b239..c180780 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+pristine-tar (0.17) unstable; urgency=low
+
+ * Correct -f order to come after --gnu.
+
+ -- Joey Hess <joeyh@debian.org> Fri, 04 Jul 2008 14:46:30 -0400
+
pristine-tar (0.16) unstable; urgency=low
* pristine-gz: Always pass -f to zgz, to support cases where
diff --git a/pristine-gz b/pristine-gz
index f85a011..b2ca53a 100755
--- a/pristine-gz
+++ b/pristine-gz
@@ -226,7 +226,7 @@ sub testvariant {
}
# try gzipping with the arguments passed
- doit('zgz', '-f', @args, $new);
+ doit('zgz', @args, "-f", $new);
$new .= '.gz';
unless (-e $new) {
die("zgz failed, aborting");