diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-12-27 13:00:09 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-12-27 13:00:09 +0000 |
commit | b62cdc2ed6b95633d59e0a6df8edb1ab0455beba (patch) | |
tree | e87796b39ff156cb0d8e94d3568dfbd43b9effa6 | |
parent | 6c2782f025313820f175597673284bac91643ecf (diff) | |
download | upstream-b62cdc2ed6b95633d59e0a6df8edb1ab0455beba.tar.gz upstream-b62cdc2ed6b95633d59e0a6df8edb1ab0455beba.tar.bz2 upstream-b62cdc2ed6b95633d59e0a6df8edb1ab0455beba.zip |
binutils: run install twice instead of overwriting the final toolchain with the initial one
fixes compiler error after a binutils rebuild/reinstall without
rebuilding the rest of the toolchain
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@43785 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | toolchain/binutils/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/toolchain/binutils/Makefile b/toolchain/binutils/Makefile index 8e661b98eb..8441f740ac 100644 --- a/toolchain/binutils/Makefile +++ b/toolchain/binutils/Makefile @@ -84,9 +84,11 @@ define Host/Install $(MAKE) -C $(HOST_BUILD_DIR) \ prefix=$(TOOLCHAIN_DIR)/initial \ install + $(MAKE) -C $(HOST_BUILD_DIR) \ + prefix=$(TOOLCHAIN_DIR) \ + install $(call FixupLibdir,$(TOOLCHAIN_DIR)/initial) $(RM) $(TOOLCHAIN_DIR)/initial/lib/libiberty.a - $(CP) $(TOOLCHAIN_DIR)/initial/. $(TOOLCHAIN_DIR)/ $(CP) $(TOOLCHAIN_DIR)/bin/$(REAL_GNU_TARGET_NAME)-readelf $(REAL_STAGING_DIR_HOST)/bin/readelf endef |