From: Felix Fietkau Date: Tue, 10 Oct 2006 17:14:42 +0000 (+0000) Subject: explicitly set CONFIG_SHELL to bash for the kernel headers configure X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f6a5a059ab9800de23eeb0a77dd9df7fcc39cb10;p=librecmc%2Flibrecmc.git explicitly set CONFIG_SHELL to bash for the kernel headers configure SVN-Revision: 5025 --- diff --git a/openwrt/toolchain/kernel-headers/Makefile b/openwrt/toolchain/kernel-headers/Makefile index a893b8511c..a242ea23ac 100644 --- a/openwrt/toolchain/kernel-headers/Makefile +++ b/openwrt/toolchain/kernel-headers/Makefile @@ -48,7 +48,10 @@ endef define Build/Configure -$(CP) ./files/config.$(LINUX_KARCH) $(PKG_BUILD_DIR)/.config - $(MAKE) -C $(PKG_BUILD_DIR) ARCH=$(LINUX_KARCH) oldconfig include/linux/version.h + $(MAKE) -C $(PKG_BUILD_DIR) \ + ARCH=$(LINUX_KARCH) \ + CONFIG_SHELL=$(shell which bash) \ + oldconfig include/linux/version.h endef define Build/Compile