From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: [PATCH] test: fix build without flow classify Date: Wed, 25 Oct 2017 17:17:39 +0200 Message-ID: <20171025151739.5189-1-thomas@monjalon.net> Cc: bernard.iremonger@intel.com To: dev@dpdk.org Return-path: Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id D07301B763 for ; Wed, 25 Oct 2017 17:17:52 +0200 (CEST) List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The unit test for flow classify should be disabled if the library is disabled in the configuration. Fixes: 9c9befea4f57 ("test: add flow classify unit tests") Cc: bernard.iremonger@intel.com Signed-off-by: Thomas Monjalon --- test/test/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test/Makefile b/test/test/Makefile index c2dbe40fd..bb54c9808 100644 --- a/test/test/Makefile +++ b/test/test/Makefile @@ -107,7 +107,7 @@ SRCS-y += test_table_tables.c SRCS-y += test_table_ports.c SRCS-y += test_table_combined.c SRCS-$(CONFIG_RTE_LIBRTE_ACL) += test_table_acl.c -SRCS-$(CONFIG_RTE_LIBRTE_ACL) += test_flow_classify.c +SRCS-$(CONFIG_RTE_LIBRTE_FLOW_CLASSIFY) += test_flow_classify.c endif SRCS-y += test_rwlock.c -- 2.14.2