From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matthew Hall Subject: [PATCH 4/4] rte.extvars.mk: allow user to override RTE_SDK_BIN Date: Sun, 20 Jul 2014 20:47:41 -0700 Message-ID: <1405914461-19335-5-git-send-email-mhall@mhcomputing.net> References: <1405914461-19335-1-git-send-email-mhall@mhcomputing.net> To: dev-VfR2kkLFssw@public.gmane.org Return-path: In-Reply-To: <1405914461-19335-1-git-send-email-mhall-Hv3ogNYU3JfZZajBQzqCxQ@public.gmane.org> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces-VfR2kkLFssw@public.gmane.org Sender: "dev" Without this patch it is impossible to compile the examples if you have compiled the DPDK into the $(RTE_SDK)/build directory, or any other one besides $(RTE_SDK)/$(RTE_TARGET). Signed-off-by: Matthew Hall --- mk/rte.extvars.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/rte.extvars.mk b/mk/rte.extvars.mk index 3e5a990..fc583ce 100644 --- a/mk/rte.extvars.mk +++ b/mk/rte.extvars.mk @@ -51,7 +51,7 @@ endif RTE_EXTMK ?= $(RTE_SRCDIR)/Makefile export RTE_EXTMK -RTE_SDK_BIN := $(RTE_SDK)/$(RTE_TARGET) +RTE_SDK_BIN ?= $(RTE_SDK)/$(RTE_TARGET) # # Output files wil go in a separate directory: default output is -- 1.9.1