aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFunda Wang <fwang@mandriva.org>2010-11-22 01:42:52 +0000
committerFunda Wang <fwang@mandriva.org>2010-11-22 01:42:52 +0000
commitb9b77f98b5dff40e9b354611e5e2a46cd2262400 (patch)
tree69a33dc20414e5584e7a1e0e765b7fb37f72b244
parent3311c0da8b542e80338d68c3db5a134ed0269027 (diff)
downloadspec-helper-b9b77f98b5dff40e9b354611e5e2a46cd2262400.tar
spec-helper-b9b77f98b5dff40e9b354611e5e2a46cd2262400.tar.gz
spec-helper-b9b77f98b5dff40e9b354611e5e2a46cd2262400.tar.bz2
spec-helper-b9b77f98b5dff40e9b354611e5e2a46cd2262400.tar.xz
spec-helper-b9b77f98b5dff40e9b354611e5e2a46cd2262400.zip
xz 5.0 do not support --text option now0.31.4
-rw-r--r--Makefile2
-rw-r--r--NEWS3
-rwxr-xr-xcompress_files2
3 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 113c5bf..0aa0f4b 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
PACKAGE = spec-helper
-VERSION = 0.31.3
+VERSION = 0.31.4
SVNPATH = svn+ssh://svn.mandriva.com/svn/soft/rpm/$(PACKAGE)
SCRIPT_FILES = clean_files clean_perl compress_files check_elf_files \
diff --git a/NEWS b/NEWS
index b312db7..dc08296 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,6 @@
+2010-11-22 Funda Wang <fwang@mandriva.org> 0.31.4
+ * xz 5.0 do not support '--text' option now.
+
2010-03-09 Per Øyvind Karlsen <peroyvind@mandriva.org> 0.31.3
* be sure to still strip files even if we're not building -debug
packages (fixing regression from 0.31.1)
diff --git a/compress_files b/compress_files
index ef56a43..a5390c2 100755
--- a/compress_files
+++ b/compress_files
@@ -112,7 +112,7 @@ if (@files) {
my @command = $ext eq '.gz' ? qw/gzip -9f/
: $ext eq '.bz2' ? qw/bzip2 -9f/
: $ext eq '.lzma' ? qw/lzma -9f --text/
- : $ext eq '.xz' ? qw/xz -9f --text/
+ : $ext eq '.xz' ? qw/xz -9f/
: qw//
;
xargs(\@files, @command);