From: Thomas Petazzoni Date: Mon, 3 Mar 2014 21:40:46 +0000 (+0100) Subject: linux: fix check of configuration file existence X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=477c28cf1d637b224b819dd278103a05fb6f9dbb;p=buildroot.git linux: fix check of configuration file existence Signed-off-by: Thomas Petazzoni --- diff --git a/linux/linux.mk b/linux/linux.mk index ec7dfc39ec..91a5fb8d81 100644 --- a/linux/linux.mk +++ b/linux/linux.mk @@ -166,9 +166,11 @@ else ifeq ($(BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG),y) KERNEL_SOURCE_CONFIG = $(call qstrip,$(BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE)) endif +ifeq ($(BR2_LINUX_KERNEL),y) ifeq ($(wildcard $(KERNEL_SOURCE_CONFIG)),) $(error Configuration file '$(KERNEL_SOURCE_CONFIG)' not found.) endif +endif ifeq ($(call KCONFIG_GET_OPT,CONFIG_KERNEL_LZO,$(KERNEL_SOURCE_CONFIG)),y) LINUX_DEPENDENCIES += host-lzop