diff options
author | Eric Engestrom <[email protected]> | 2017-02-08 04:27:00 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2017-02-08 12:00:24 -0700 |
commit | 06e40dc67151f6c81699bc1fe51c828fc1b2fd58 (patch) | |
tree | 3ad0c0c71b829d9d5b1a76cfbfaea8b888ab87a2 /docs | |
parent | d7e1a16f1ae37dc2fadaaa1281cf1f299439eba0 (diff) |
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 <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/download.html | 24 |
1 files changed, 4 insertions, 20 deletions
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 <h1>Unpacking</h1> <p> -Mesa releases are available in three formats: .tar.bz2, .tar.gz, and .zip +Mesa releases are available in two formats: <tt>.tar.xz</tt> and <tt>.tar.gz</tt>. </p> <p> -To unpack .tar.gz files: -</p> -<pre> - tar zxf MesaLib-x.y.z.tar.gz -</pre> -or +To unpack the tarball: <pre> - gzcat MesaLib-x.y.z.tar.gz | tar xf - + tar xf mesa-Y.N.P.tar.xz </pre> or <pre> - gunzip MesaLib-x.y.z.tar.gz ; tar xf MesaLib-x.y.z.tar + tar xf mesa-Y.N.P.tar.gz </pre> -<p> -To unpack .tar.bz2 files: </p> -<pre> - bunzip2 -c MesaLib-x.y.z.tar.gz | tar xf - -</pre> -<p> -To unpack .zip files: -</p> -<pre> - unzip MesaLib-x.y.z.zip -</pre> <h1>Contents</h1> |