From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 3D0002BB3 for ; Tue, 26 Jul 2016 15:57:55 +0200 (CEST) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga101.jf.intel.com with ESMTP; 26 Jul 2016 06:57:27 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.28,425,1464678000"; d="scan'208";a="853774840" Received: from irsmsx152.ger.corp.intel.com ([163.33.192.66]) by orsmga003.jf.intel.com with ESMTP; 26 Jul 2016 06:57:27 -0700 Received: from irsmsx103.ger.corp.intel.com ([169.254.3.204]) by IRSMSX152.ger.corp.intel.com ([169.254.6.43]) with mapi id 14.03.0248.002; Tue, 26 Jul 2016 14:57:26 +0100 From: "Mcnamara, John" To: Shreyansh Jain , "De Lara Guarch, Pablo" CC: "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH] doc: fix incorrect path to testpmd app Thread-Index: AQHR50INaVJBf/CtlkKIFdet0xoVbaAqu5Vg Date: Tue, 26 Jul 2016 13:57:25 +0000 Message-ID: References: <1469539901-22329-1-git-send-email-shreyansh.jain@nxp.com> In-Reply-To: <1469539901-22329-1-git-send-email-shreyansh.jain@nxp.com> Accept-Language: en-GB, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-ctpclassification: CTP_IC x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiMzlhNjEzYmMtYTk4Yi00YTA4LTliNWQtZjAxODdlYWYwYjZjIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6IlRnUEZ6NVNJbW1LWStnTUJQbXRsS3JNQnoxd2d5UEc0NERMWWVDRDNicUk9In0= x-originating-ip: [163.33.239.181] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH] doc: fix incorrect path to testpmd app X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Jul 2016 13:57:55 -0000 > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Shreyansh Jain > Sent: Tuesday, July 26, 2016 2:32 PM > To: De Lara Guarch, Pablo > Cc: dev@dpdk.org > Subject: [dpdk-dev] [PATCH] doc: fix incorrect path to testpmd app >=20 > Signed-off-by: Shreyansh Jain > --- > doc/guides/testpmd_app_ug/build_app.rst | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) >=20 > diff --git a/doc/guides/testpmd_app_ug/build_app.rst > b/doc/guides/testpmd_app_ug/build_app.rst > index 7f32a7c..4c7cf2e 100644 > --- a/doc/guides/testpmd_app_ug/build_app.rst > +++ b/doc/guides/testpmd_app_ug/build_app.rst > @@ -58,4 +58,4 @@ The basic compilation steps are: >=20 > .. code-block:: console >=20 > - $RTE_SDK/$RTE_TARGET/build/app/testpmd > + $RTE_SDK/$RTE_TARGET/app/testpmd The exe is actually two places after the build but the existing one in the docs looks correct, the one in "build" looks different to me: $ find . -name testpmd | xargs ls -1 ./x86_64-native-linuxapp-gcc/app/testpmd ./x86_64-native-linuxapp-gcc/build/app/test-pmd/testpmd John