1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-01 09:41:38 +03:00

explicitly set CONFIG_SHELL to bash for the kernel headers configure

git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@5025 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2006-10-10 17:14:42 +00:00
parent 3d124095e9
commit 2436f46eb2

View File

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