From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Marchand Subject: [PATCH] test: fix build when disabling ipsec library Date: Thu, 17 Jan 2019 11:15:22 +0100 Message-ID: <1547720122-5835-1-git-send-email-david.marchand@redhat.com> Cc: mohammad.abdul.awal@intel.com, bernard.iremonger@intel.com, konstantin.ananyev@intel.com, declan.doherty@intel.com, akhil.goyal@nxp.com To: dev@dpdk.org Return-path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id 184B09E4 for ; Thu, 17 Jan 2019 11:15:30 +0100 (CET) List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Caught after pulling ipsec then compile in an existing build directory. Fixes: 05fe65eb66b2 ("test/ipsec: introduce functional test") Signed-off-by: David Marchand --- Did a simple fix, we might want to have something like a _LDLIBS-y variable but that's just cosmetic. --- test/test/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test/Makefile b/test/test/Makefile index e7c8108..5641a59 100644 --- a/test/test/Makefile +++ b/test/test/Makefile @@ -208,7 +208,9 @@ SRCS-$(CONFIG_RTE_LIBRTE_KVARGS) += test_kvargs.c SRCS-$(CONFIG_RTE_LIBRTE_BPF) += test_bpf.c SRCS-$(CONFIG_RTE_LIBRTE_IPSEC) += test_ipsec.c +ifeq ($(CONFIG_RTE_LIBRTE_IPSEC),y) LDLIBS += -lrte_ipsec +endif CFLAGS += -DALLOW_EXPERIMENTAL_API -- 1.8.3.1