diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-07-29 00:07:47 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-07-29 00:07:47 +0000 |
commit | 80fa31a204a1ef9b0ca64c09e36676822e4ccbb0 (patch) | |
tree | afd87ae796dd9d0bdc5b9842540bea7add38b0f1 | |
parent | 2661ca8f1e95b44273dad3aa5c48f03d2b968bd0 (diff) | |
download | mtk-20170518-80fa31a204a1ef9b0ca64c09e36676822e4ccbb0.zip mtk-20170518-80fa31a204a1ef9b0ca64c09e36676822e4ccbb0.tar.gz mtk-20170518-80fa31a204a1ef9b0ca64c09e36676822e4ccbb0.tar.bz2 |
fix weird toolchain build error
SVN-Revision: 1573
-rw-r--r-- | openwrt/toolchain/gcc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openwrt/toolchain/gcc/Makefile b/openwrt/toolchain/gcc/Makefile index 41a77bb..a04d8bf 100644 --- a/openwrt/toolchain/gcc/Makefile +++ b/openwrt/toolchain/gcc/Makefile @@ -86,7 +86,7 @@ endif $(GCC_BUILD_DIR1)/.configured: $(GCC_DIR)/.patched mkdir -p $(GCC_BUILD_DIR1) - (cd $(GCC_BUILD_DIR1); PATH=$(TARGET_PATH) \ + (cd $(GCC_BUILD_DIR1); rm -f config.cache; PATH=$(TARGET_PATH) \ $(GCC_DIR)/configure \ --prefix=$(STAGING_DIR) \ --build=$(GNU_HOST_NAME) \ @@ -133,7 +133,7 @@ $(GCC_BUILD_DIR2)/.configured: $(GCC_DIR)/.patched $(STAGING_DIR)/lib/libc.a ln -sf ../include $(STAGING_DIR)/$(REAL_GNU_TARGET_NAME)/sys-include rm -rf $(STAGING_DIR)/$(REAL_GNU_TARGET_NAME)/lib ln -sf ../lib $(STAGING_DIR)/$(REAL_GNU_TARGET_NAME)/lib - (cd $(GCC_BUILD_DIR2); PATH=$(TARGET_PATH) \ + (cd $(GCC_BUILD_DIR2); rm -f config.cache; PATH=$(TARGET_PATH) \ $(GCC_DIR)/configure \ --prefix=$(STAGING_DIR) \ --build=$(GNU_HOST_NAME) \ |