diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2014-02-08 17:26:06 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-03-03 22:22:18 +0100 |
commit | b4cacbf5b15db06132b5f401d39b4c8d4e79158e (patch) | |
tree | 4584f2ba7e0aa1f11b3ae2c9cc79767b7b6c9c95 | |
parent | ca80782f4571f004c2b8cf2d0e60e83343beff34 (diff) | |
download | buildroot-b4cacbf5b15db06132b5f401d39b4c8d4e79158e.tar.gz buildroot-b4cacbf5b15db06132b5f401d39b4c8d4e79158e.zip |
linux: check the configuration file exists
... and abort early, before we even use it.
Reported-by: Peter Korsgaard <jacmet@uclibc.org>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | linux/linux.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/linux/linux.mk b/linux/linux.mk index cf728aad05..ec7dfc39ec 100644 --- a/linux/linux.mk +++ b/linux/linux.mk @@ -166,6 +166,10 @@ else ifeq ($(BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG),y) KERNEL_SOURCE_CONFIG = $(call qstrip,$(BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE)) endif +ifeq ($(wildcard $(KERNEL_SOURCE_CONFIG)),) +$(error Configuration file '$(KERNEL_SOURCE_CONFIG)' not found.) +endif + ifeq ($(call KCONFIG_GET_OPT,CONFIG_KERNEL_LZO,$(KERNEL_SOURCE_CONFIG)),y) LINUX_DEPENDENCIES += host-lzop endif |