From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id A87FC214A for ; Tue, 29 Mar 2016 20:28:46 +0200 (CEST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga103.fm.intel.com with ESMTP; 29 Mar 2016 11:28:45 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.24,412,1455004800"; d="scan'208";a="921203713" Received: from sie-lab-214-036.ir.intel.com (HELO sie-lab-214-36.ir.intel.com) ([10.237.214.36]) by orsmga001.jf.intel.com with ESMTP; 29 Mar 2016 11:28:42 -0700 From: Pablo de Lara To: dev@dpdk.org Cc: bruce.richardson@intel.com, thomas.monjalon@intel.com, Pablo de Lara Date: Tue, 29 Mar 2016 19:28:51 +0100 Message-Id: <1459276131-21095-1-git-send-email-pablo.de.lara.guarch@intel.com> X-Mailer: git-send-email 2.5.5 Subject: [dpdk-dev] [PATCH] dpdk_qat: fix error message in Makefile 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, 29 Mar 2016 18:28:47 -0000 When compiling dpdk_qat app with an i686 target on a x86_64 OS, an error message was shown, saying that it can only be built on a 32-bit OS, which should be i686 OS, as other 32-bit OS are not supported. Fixes: commit 3460012bcce6 ("examples/qat: update") Signed-off-by: Pablo de Lara --- examples/dpdk_qat/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/dpdk_qat/Makefile b/examples/dpdk_qat/Makefile index f1e06a1..01d61bc 100644 --- a/examples/dpdk_qat/Makefile +++ b/examples/dpdk_qat/Makefile @@ -53,7 +53,7 @@ ifeq ($(CROSS_COMPILE),) ifneq ($(LBITS),i686) $(error The RTE_TARGET chosen is not compatible with this environment \ (x86_64), for this application. Please change the definition of the \ - RTE_TARGET environment variable, or run the application on a 32-bit OS) + RTE_TARGET environment variable, or run the application on a i686 OS) endif endif endif -- 2.5.5