From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx.tkos.co.il (guitar.tcltek.co.il [192.115.133.116]) by dpdk.org (Postfix) with ESMTP id E06AB2C8 for ; Tue, 13 Dec 2016 12:19:03 +0100 (CET) Received: from tarshish.tkos.co.il (unknown [10.0.8.6]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mx.tkos.co.il (Postfix) with ESMTPSA id 26240440045; Tue, 13 Dec 2016 13:19:03 +0200 (IST) From: Baruch Siach To: dev@dpdk.org Cc: John McNamara , David Marchand , Baruch Siach Date: Tue, 13 Dec 2016 13:18:55 +0200 Message-Id: <5f75987b3a17859f4c0961e3ddee72db938c4f07.1481627935.git.baruch@tkos.co.il> X-Mailer: git-send-email 2.10.2 Subject: [dpdk-dev] [PATCH] doc: correct source extract command X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Dec 2016 11:19:04 -0000 DPDK source archives are .tar.xz or .tar.gz, not .zip. Use .tar.xz in the instructions, since that is what the main download page links to. Also, correct the archive file and directory name capitalization. Signed-off-by: Baruch Siach --- doc/guides/linux_gsg/build_dpdk.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/guides/linux_gsg/build_dpdk.rst b/doc/guides/linux_gsg/build_dpdk.rst index 527c38dc9a9b..51a6210620a8 100644 --- a/doc/guides/linux_gsg/build_dpdk.rst +++ b/doc/guides/linux_gsg/build_dpdk.rst @@ -45,8 +45,8 @@ First, uncompress the archive and move to the uncompressed DPDK source directory .. code-block:: console - unzip DPDK-.zip - cd DPDK- + tar xJf dpdk-.tar.xz + cd dpdk- The DPDK is composed of several directories: -- 2.10.2