[Pkg-libvirt-commits] [libguestfs] 142/156: builder: do not use xz --block-size for the test images
Hilko Bengen
bengen at moszumanska.debian.org
Sat Aug 30 08:26:15 UTC 2014
This is an automated email from the git hooks/post-receive script.
bengen pushed a commit to branch master
in repository libguestfs.
commit 7113c8a83607047e24cc42f3225591b1908f58c4
Author: Pino Toscano <ptoscano at redhat.com>
Date: Tue Aug 19 14:22:07 2014 +0200
builder: do not use xz --block-size for the test images
Do not use the --block-size parameter of xz when compressing the test
images, as that option does not exist in xz < 5.1.
(cherry picked from commit 6b2bf2c7ace9a1e619fe33b13c06fad49e0731a3)
---
builder/Makefile.am | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/builder/Makefile.am b/builder/Makefile.am
index 1f63aa5..14639be 100644
--- a/builder/Makefile.am
+++ b/builder/Makefile.am
@@ -218,12 +218,12 @@ fedora.qcow2: ../tests/guests/fedora.img
fedora.qcow2.xz: fedora.qcow2
rm -f $@ $@-t
- xz --best --block-size=16777216 -c $< > $@-t
+ xz --best -c $< > $@-t
mv $@-t $@
%.xz: ../tests/guests/%.img
rm -f $@ $@-t
- xz --best --block-size=16777216 -c $< > $@-t
+ xz --best -c $< > $@-t
mv $@-t $@
TESTS = test-virt-builder-list.sh
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-libvirt/libguestfs.git
More information about the Pkg-libvirt-commits
mailing list