From: Jonathan Watt Date: Fri, 13 Nov 2020 13:30:45 +0000 (+0000) Subject: docs: compiling.html: pass -d to xz to decompress X-Git-Tag: v6.10.0-rc1~170 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1423c1d8bcc1d13ab06a3807e40a5416af9e42c0;p=thirdparty%2Flibvirt.git docs: compiling.html: pass -d to xz to decompress tar on macOS recognizes XZ compression automatically, but that is not the case for GNU tar (1.32 at least). On Fedora 33 the current instructions result in the following error: $ xz -c libvirt-6.9.0.tar.xz | tar xvf - tar: Archive is compressed. Use -J option tar: Error is not recoverable: exiting now Reviewed-by: Daniel P. Berrangé Signed-off-by: Jonathan Watt --- diff --git a/docs/compiling.html.in b/docs/compiling.html.in index c898d16313..c2c9d9f0ed 100644 --- a/docs/compiling.html.in +++ b/docs/compiling.html.in @@ -14,7 +14,7 @@

-$ xz -c libvirt-x.x.x.tar.xz | tar xvf -
+$ xz -dc libvirt-x.x.x.tar.xz | tar xvf -
 $ cd libvirt-x.x.x
 $ meson build