From: Thomas Monjalon Date: Wed, 2 Mar 2016 15:35:29 +0000 (+0100) Subject: mk: fix error message X-Git-Tag: spdx-start~7571 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=973735dd994aa1e3a8ac2649c84094b50844c939;p=dpdk.git mk: fix error message When specifying a wrong directory with RTE_SDK and RTE_TARGET to build an application, the error message about missing config file was wrong. Fixes: 6b62a72a70d0 ("mk: install a standard cutomizable tree") Reported-by: Steeven Lee Signed-off-by: Thomas Monjalon --- diff --git a/mk/internal/rte.extvars.mk b/mk/internal/rte.extvars.mk index 040d39f183..e2462fd2ab 100644 --- a/mk/internal/rte.extvars.mk +++ b/mk/internal/rte.extvars.mk @@ -54,7 +54,7 @@ export RTE_EXTMK # RTE_SDK_BIN must point to .config, include/ and lib/. RTE_SDK_BIN := $(RTE_SDK)/$(RTE_TARGET) ifeq ($(wildcard $(RTE_SDK_BIN)/.config),) -$(error Cannot find .config in $(RTE_SDK)) +$(error Cannot find .config in $(RTE_SDK_BIN)) endif #