From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: [PATCH] mk: fix error message Date: Wed, 2 Mar 2016 16:52:22 +0100 Message-ID: <1456933942-9148-1-git-send-email-thomas.monjalon@6wind.com> References: <69285276.9idFayf1Xb@xps13> To: dev@dpdk.org Return-path: Received: from mail-wm0-f45.google.com (mail-wm0-f45.google.com [74.125.82.45]) by dpdk.org (Postfix) with ESMTP id 1C4D82C23 for ; Wed, 2 Mar 2016 16:54:00 +0100 (CET) Received: by mail-wm0-f45.google.com with SMTP id n186so92480529wmn.1 for ; Wed, 02 Mar 2016 07:54:00 -0800 (PST) In-Reply-To: <69285276.9idFayf1Xb@xps13> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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 --- mk/internal/rte.extvars.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/internal/rte.extvars.mk b/mk/internal/rte.extvars.mk index 040d39f..e2462fd 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 # -- 2.7.0