examples/dpdk_qat: fix build error message
authorPablo de Lara <pablo.de.lara.guarch@intel.com>
Tue, 29 Mar 2016 18:28:51 +0000 (19:28 +0100)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Thu, 31 Mar 2016 20:03:05 +0000 (22:03 +0200)
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: 3460012bcce6 ("examples/qat: update")

Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
examples/dpdk_qat/Makefile

index f1e06a1..01d61bc 100644 (file)
@@ -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