mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-17 21:23:11 +02:00
more shell related fixes
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5509 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
b15238f536
commit
4134d3b68a
@ -45,11 +45,10 @@ include $(INCLUDE_DIR)/host-build.mk
|
|||||||
BUILD_DIR1:=$(TOOLCHAIN_BUILD_DIR)/gcc-$(PKG_VERSION)-initial
|
BUILD_DIR1:=$(TOOLCHAIN_BUILD_DIR)/gcc-$(PKG_VERSION)-initial
|
||||||
BUILD_DIR2:=$(TOOLCHAIN_BUILD_DIR)/gcc-$(PKG_VERSION)-final
|
BUILD_DIR2:=$(TOOLCHAIN_BUILD_DIR)/gcc-$(PKG_VERSION)-final
|
||||||
|
|
||||||
override SHELL:=$(BASH)
|
|
||||||
|
|
||||||
define Stage1/Configure
|
define Stage1/Configure
|
||||||
mkdir -p $(BUILD_DIR1)
|
mkdir -p $(BUILD_DIR1)
|
||||||
(cd $(BUILD_DIR1); rm -f config.cache; \
|
(cd $(BUILD_DIR1); rm -f config.cache; \
|
||||||
|
SHELL="$(BASH)" \
|
||||||
$(PKG_BUILD_DIR)/configure \
|
$(PKG_BUILD_DIR)/configure \
|
||||||
--prefix=$(STAGING_DIR) \
|
--prefix=$(STAGING_DIR) \
|
||||||
--build=$(GNU_HOST_NAME) \
|
--build=$(GNU_HOST_NAME) \
|
||||||
@ -65,10 +64,10 @@ define Stage1/Configure
|
|||||||
);
|
);
|
||||||
endef
|
endef
|
||||||
define Stage1/Compile
|
define Stage1/Compile
|
||||||
$(MAKE) -C $(BUILD_DIR1) all-gcc
|
$(MAKE) -C $(BUILD_DIR1) all-gcc SHELL="$(BASH)"
|
||||||
endef
|
endef
|
||||||
define Stage1/Install
|
define Stage1/Install
|
||||||
$(MAKE) -C $(BUILD_DIR1) install-gcc
|
$(MAKE) -C $(BUILD_DIR1) install-gcc SHELL="$(BASH)"
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Stage2/Configure
|
define Stage2/Configure
|
||||||
@ -79,6 +78,7 @@ define Stage2/Configure
|
|||||||
rm -rf $(STAGING_DIR)/$(REAL_GNU_TARGET_NAME)/lib
|
rm -rf $(STAGING_DIR)/$(REAL_GNU_TARGET_NAME)/lib
|
||||||
ln -sf ../lib $(STAGING_DIR)/$(REAL_GNU_TARGET_NAME)/lib
|
ln -sf ../lib $(STAGING_DIR)/$(REAL_GNU_TARGET_NAME)/lib
|
||||||
(cd $(BUILD_DIR2); rm -f config.cache; \
|
(cd $(BUILD_DIR2); rm -f config.cache; \
|
||||||
|
SHELL="$(BASH)" \
|
||||||
$(PKG_BUILD_DIR)/configure \
|
$(PKG_BUILD_DIR)/configure \
|
||||||
--prefix=$(STAGING_DIR) \
|
--prefix=$(STAGING_DIR) \
|
||||||
--build=$(GNU_HOST_NAME) \
|
--build=$(GNU_HOST_NAME) \
|
||||||
@ -93,10 +93,10 @@ define Stage2/Configure
|
|||||||
);
|
);
|
||||||
endef
|
endef
|
||||||
define Stage2/Compile
|
define Stage2/Compile
|
||||||
$(MAKE) -C $(BUILD_DIR2) all
|
$(MAKE) -C $(BUILD_DIR2) all SHELL="$(BASH)"
|
||||||
endef
|
endef
|
||||||
define Stage2/Install
|
define Stage2/Install
|
||||||
$(MAKE) -C $(BUILD_DIR2) install
|
$(MAKE) -C $(BUILD_DIR2) install SHELL="$(BASH)"
|
||||||
echo $(PKG_VERSION) > $(STAGING_DIR)/gcc_version
|
echo $(PKG_VERSION) > $(STAGING_DIR)/gcc_version
|
||||||
# Set up the symlinks to enable lying about target name.
|
# Set up the symlinks to enable lying about target name.
|
||||||
set -e; \
|
set -e; \
|
||||||
|
@ -29,7 +29,7 @@ define Build/Configure
|
|||||||
-$(CP) ./files/config.$(LINUX_KARCH) $(PKG_BUILD_DIR)/.config
|
-$(CP) ./files/config.$(LINUX_KARCH) $(PKG_BUILD_DIR)/.config
|
||||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||||
ARCH=$(LINUX_KARCH) \
|
ARCH=$(LINUX_KARCH) \
|
||||||
CONFIG_SHELL=$(shell which bash) \
|
CONFIG_SHELL=$(BASH) \
|
||||||
defconfig include/linux/version.h
|
defconfig include/linux/version.h
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
@ -18,10 +18,9 @@ PKG_BUILD_DIR:=$(TOOL_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|||||||
|
|
||||||
include $(INCLUDE_DIR)/host-build.mk
|
include $(INCLUDE_DIR)/host-build.mk
|
||||||
|
|
||||||
override SHELL:=$(BASH)
|
|
||||||
|
|
||||||
define Build/Configure
|
define Build/Configure
|
||||||
(cd $(PKG_BUILD_DIR); rm -rf config.cache; \
|
(cd $(PKG_BUILD_DIR); rm -rf config.cache; \
|
||||||
|
SHELL="$(BASH)" \
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=$(STAGING_DIR) \
|
--prefix=$(STAGING_DIR) \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
@ -29,7 +28,7 @@ define Build/Configure
|
|||||||
endef
|
endef
|
||||||
|
|
||||||
define Build/Compile
|
define Build/Compile
|
||||||
$(MAKE) -C $(PKG_BUILD_DIR)
|
$(MAKE) -C $(PKG_BUILD_DIR) SHELL="$(BASH)"
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Build/Install
|
define Build/Install
|
||||||
|
Loading…
Reference in New Issue
Block a user