[dpdk-dev] dpdk_qat: fix error message in Makefile

Message ID 1459276131-21095-1-git-send-email-pablo.de.lara.guarch@intel.com (mailing list archive)
State Accepted, archived
Headers

Commit Message

De Lara Guarch, Pablo March 29, 2016, 6:28 p.m. UTC
  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 <pablo.de.lara.guarch@intel.com>
---
 examples/dpdk_qat/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Comments

Thomas Monjalon March 31, 2016, 7:52 p.m. UTC | #1
2016-03-29 19:28, Pablo de Lara:
> 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 <pablo.de.lara.guarch@intel.com>

Applied, thanks
  

Patch

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