[Pkg-libvirt-commits] [libguestfs] 126/266: builder: do not use xz --block-size for the test images

Hilko Bengen bengen at moszumanska.debian.org
Fri Oct 3 14:41:50 UTC 2014


This is an automated email from the git hooks/post-receive script.

bengen pushed a commit to annotated tag debian/1%1.27.35-1
in repository libguestfs.

commit 6b2bf2c7ace9a1e619fe33b13c06fad49e0731a3
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.
---
 builder/Makefile.am | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/builder/Makefile.am b/builder/Makefile.am
index 6a5cb01..726ca60 100644
--- a/builder/Makefile.am
+++ b/builder/Makefile.am
@@ -224,12 +224,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 = \

-- 
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