summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Thomas <pth@suse.de>2011-11-10 21:14:45 +0100
committerJean Delvare <jdelvare@suse.de>2011-11-10 21:14:45 +0100
commit0b1f605c5d5db8b77a4e0d1c528c8d7bc696d471 (patch)
tree7e786c5c0e35eafd18f780db28a1daac41c6ea56
parent7c56a11a2de67cb7043cfabb3d80146a6426062c (diff)
downloadquilt-0b1f605c5d5db8b77a4e0d1c528c8d7bc696d471.tar.gz
inspect: Newer file changed the output for xz compressed data so adapt to it.
-rw-r--r--quilt.changes6
-rw-r--r--quilt/scripts/inspect.in2
2 files changed, 7 insertions, 1 deletions
diff --git a/quilt.changes b/quilt.changes
index 08bff60..0c1b1d6 100644
--- a/quilt.changes
+++ b/quilt.changes
@@ -1,4 +1,10 @@
-------------------------------------------------------------------
+Thu Nov 10 21:11:36 CET 2011 - pth@suse.de
+
+- quilt/inspect.in: Newer file changed the output for xz compressed
+ data so adapt to it.
+
+-------------------------------------------------------------------
Wed Oct 5 16:21:28 CEST 2011 - ohering@suse.de
- quilt/inspect.in: Quote strings to avoid flood of shell syntax
diff --git a/quilt/scripts/inspect.in b/quilt/scripts/inspect.in
index 52f9c5c..a7ee523 100644
--- a/quilt/scripts/inspect.in
+++ b/quilt/scripts/inspect.in
@@ -115,7 +115,7 @@ do
set -- $(bzip2 -cd "$file" | md5sum)
echo "$1 $basename"
;;
- xz*)
+ xz*|XZ*)
echo -n "x" >&4
echo "xz -cd $file | md5sum" >&2
set -- $(xz -cd "$file" | md5sum)