From: Thomas De Schampheleire Date: Tue, 3 Feb 2015 14:21:46 +0000 (+0100) Subject: linux: qstrip the path to the custom configuration file X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=89a47724e943fe449ce55b6341d64744fcb8e18a;p=buildroot.git linux: qstrip the path to the custom configuration file Even though this is not strictly necessary with the current version of linux.mk, it becomes necessary when migrating linux.mk to the kconfig infrastructure. Signed-off-by: Thomas De Schampheleire Signed-off-by: "Yann E. Morin" Signed-off-by: Thomas Petazzoni --- diff --git a/linux/linux.mk b/linux/linux.mk index 29f59e882e..a321fa74eb 100644 --- a/linux/linux.mk +++ b/linux/linux.mk @@ -171,7 +171,7 @@ LINUX_POST_PATCH_HOOKS += LINUX_APPLY_PATCHES ifeq ($(BR2_LINUX_KERNEL_USE_DEFCONFIG),y) KERNEL_SOURCE_CONFIG = $(KERNEL_ARCH_PATH)/configs/$(call qstrip,$(BR2_LINUX_KERNEL_DEFCONFIG))_defconfig else ifeq ($(BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG),y) -KERNEL_SOURCE_CONFIG = $(BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE) +KERNEL_SOURCE_CONFIG = $(call qstrip,$(BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE)) endif define LINUX_CONFIGURE_CMDS