1
0
Fork 0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-05-12 02:26:19 +02:00

more shell related fixes

SVN-Revision: 5509
This commit is contained in:
Felix Fietkau 2006-11-12 02:45:13 +00:00
parent a264975480
commit 864ae8f613
3 changed files with 9 additions and 10 deletions

View File

@ -45,11 +45,10 @@ include $(INCLUDE_DIR)/host-build.mk
BUILD_DIR1:=$(TOOLCHAIN_BUILD_DIR)/gcc-$(PKG_VERSION)-initial
BUILD_DIR2:=$(TOOLCHAIN_BUILD_DIR)/gcc-$(PKG_VERSION)-final
override SHELL:=$(BASH)
define Stage1/Configure
mkdir -p $(BUILD_DIR1)
(cd $(BUILD_DIR1); rm -f config.cache; \
SHELL="$(BASH)" \
$(PKG_BUILD_DIR)/configure \
--prefix=$(STAGING_DIR) \
--build=$(GNU_HOST_NAME) \
@ -65,10 +64,10 @@ define Stage1/Configure
);
endef
define Stage1/Compile
$(MAKE) -C $(BUILD_DIR1) all-gcc
$(MAKE) -C $(BUILD_DIR1) all-gcc SHELL="$(BASH)"
endef
define Stage1/Install
$(MAKE) -C $(BUILD_DIR1) install-gcc
$(MAKE) -C $(BUILD_DIR1) install-gcc SHELL="$(BASH)"
endef
define Stage2/Configure
@ -79,6 +78,7 @@ define Stage2/Configure
rm -rf $(STAGING_DIR)/$(REAL_GNU_TARGET_NAME)/lib
ln -sf ../lib $(STAGING_DIR)/$(REAL_GNU_TARGET_NAME)/lib
(cd $(BUILD_DIR2); rm -f config.cache; \
SHELL="$(BASH)" \
$(PKG_BUILD_DIR)/configure \
--prefix=$(STAGING_DIR) \
--build=$(GNU_HOST_NAME) \
@ -93,10 +93,10 @@ define Stage2/Configure
);
endef
define Stage2/Compile
$(MAKE) -C $(BUILD_DIR2) all
$(MAKE) -C $(BUILD_DIR2) all SHELL="$(BASH)"
endef
define Stage2/Install
$(MAKE) -C $(BUILD_DIR2) install
$(MAKE) -C $(BUILD_DIR2) install SHELL="$(BASH)"
echo $(PKG_VERSION) > $(STAGING_DIR)/gcc_version
# Set up the symlinks to enable lying about target name.
set -e; \

View File

@ -29,7 +29,7 @@ define Build/Configure
-$(CP) ./files/config.$(LINUX_KARCH) $(PKG_BUILD_DIR)/.config
$(MAKE) -C $(PKG_BUILD_DIR) \
ARCH=$(LINUX_KARCH) \
CONFIG_SHELL=$(shell which bash) \
CONFIG_SHELL=$(BASH) \
defconfig include/linux/version.h
endef

View File

@ -18,10 +18,9 @@ PKG_BUILD_DIR:=$(TOOL_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
include $(INCLUDE_DIR)/host-build.mk
override SHELL:=$(BASH)
define Build/Configure
(cd $(PKG_BUILD_DIR); rm -rf config.cache; \
SHELL="$(BASH)" \
./configure \
--prefix=$(STAGING_DIR) \
--prefix=/usr \
@ -29,7 +28,7 @@ define Build/Configure
endef
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR)
$(MAKE) -C $(PKG_BUILD_DIR) SHELL="$(BASH)"
endef
define Build/Install