From: Eric Engestrom Date: Wed, 8 Feb 2017 11:27:00 +0000 (-0700) Subject: docs: fix unpacking instructions X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=06e40dc67151f6c81699bc1fe51c828fc1b2fd58;p=mesa.git docs: fix unpacking instructions File names were wrong, file formats were wrong, bunzip command was wrong... I also removed all but the simplest example; people who use pipes already know how to untar, so let's simplify and remove potential confusion for non-tech-savvy users. Signed-off-by: Eric Engestrom Reviewed-by: Brian Paul --- diff --git a/docs/download.html b/docs/download.html index 2c8e271502d..a7a6fe6cdfa 100644 --- a/docs/download.html +++ b/docs/download.html @@ -41,35 +41,19 @@ in the same directory, and are recognisable by the

Unpacking

-Mesa releases are available in three formats: .tar.bz2, .tar.gz, and .zip +Mesa releases are available in two formats: .tar.xz and .tar.gz.

-To unpack .tar.gz files: -

-
-	tar zxf MesaLib-x.y.z.tar.gz
-
-or +To unpack the tarball:
-	gzcat MesaLib-x.y.z.tar.gz | tar xf -
+	tar xf mesa-Y.N.P.tar.xz
 
or
-	gunzip MesaLib-x.y.z.tar.gz ; tar xf MesaLib-x.y.z.tar
+	tar xf mesa-Y.N.P.tar.gz
 
-

-To unpack .tar.bz2 files:

-
-	bunzip2 -c MesaLib-x.y.z.tar.gz | tar xf -
-
-

-To unpack .zip files: -

-
-	unzip MesaLib-x.y.z.zip
-

Contents