diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-07-04 14:47:30 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-07-04 14:47:30 -0400 |
commit | 94d16a72764c9a73d4dc2f2e29288cb26c9a65b8 (patch) | |
tree | 3eb1907ef814c2a061605ace1454b9bcfcf0b542 | |
parent | 4bf6d6820d1b1990b83d9637dbc596718f0389f8 (diff) | |
download | pristine-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/changelog | 6 | ||||
-rwxr-xr-x | pristine-gz | 2 |
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"); |