From 06e40dc67151f6c81699bc1fe51c828fc1b2fd58 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Wed, 8 Feb 2017 04:27:00 -0700 Subject: [PATCH] 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 --- docs/download.html | 24 ++++-------------------- 1 file changed, 4 insertions(+), 20 deletions(-) diff --git a/docs/download.html b/docs/download.html index 2c8e271..a7a6fe6 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

-- 2.7.4