X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/4134d3b68a6053d2923b175c51f38a771a295403..9700c583813a2b5ab6e2d7bd86abf99197ac5007:/toolchain/gcc/Makefile diff --git a/toolchain/gcc/Makefile b/toolchain/gcc/Makefile index af06e8a4c..a738345d2 100644 --- a/toolchain/gcc/Makefile +++ b/toolchain/gcc/Makefile @@ -64,10 +64,10 @@ define Stage1/Configure ); endef define Stage1/Compile - $(MAKE) -C $(BUILD_DIR1) all-gcc SHELL="$(BASH)" + export SHELL="$(BASH)"; $(MAKE) -C $(BUILD_DIR1) all-gcc endef define Stage1/Install - $(MAKE) -C $(BUILD_DIR1) install-gcc SHELL="$(BASH)" + export SHELL="$(BASH)"; $(MAKE) -C $(BUILD_DIR1) install-gcc endef define Stage2/Configure @@ -93,10 +93,10 @@ define Stage2/Configure ); endef define Stage2/Compile - $(MAKE) -C $(BUILD_DIR2) all SHELL="$(BASH)" + export SHELL="$(BASH)"; $(MAKE) -C $(BUILD_DIR2) all endef define Stage2/Install - $(MAKE) -C $(BUILD_DIR2) install SHELL="$(BASH)" + export SHELL="$(BASH)"; $(MAKE) -C $(BUILD_DIR2) install echo $(PKG_VERSION) > $(STAGING_DIR)/gcc_version # Set up the symlinks to enable lying about target name. set -e; \