1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-01 08:31:19 +02:00

explicitly set CONFIG_SHELL to bash for the kernel headers configure

SVN-Revision: 5025
This commit is contained in:
Felix Fietkau 2006-10-10 17:14:42 +00:00
parent cd3f8b5e65
commit f6a5a059ab

@ -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