diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-07-30 22:01:29 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-07-30 22:01:29 +0000 |
commit | fa6b203c6ece8f9bd675debe8a2b399b68f71e7b (patch) | |
tree | ab0d2490cc1588101c972460738c5379c42110ca /toolchain | |
parent | 215c893ae1c8ba1d898d94dfbb6795038f52b330 (diff) |
fix an uClibc compile error that only happens on rebuilds
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8248 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain')
-rw-r--r-- | toolchain/uClibc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolchain/uClibc/Makefile b/toolchain/uClibc/Makefile index 7fce98954..d6ef6a343 100644 --- a/toolchain/uClibc/Makefile +++ b/toolchain/uClibc/Makefile @@ -37,7 +37,6 @@ UCLIBC_TARGET_ARCH:=$(shell echo $(ARCH) | sed -e s'/-.*//' \ define Build/Prepare $(call Build/Prepare/Default) - $(SED) 's,^CROSS=.*,CROSS=$(TARGET_CROSS),g' $(PKG_BUILD_DIR)/Rules.mak if [ -e config/$(ARCH).$(BOARD) ]; then \ $(CP) config/$(ARCH).$(BOARD) $(PKG_BUILD_DIR)/.config; \ else \ @@ -73,6 +72,7 @@ define Build/Configure endef define Build/Compile + $(SED) 's,^CROSS=.*,CROSS=$(TARGET_CROSS),g' $(PKG_BUILD_DIR)/Rules.mak PATH=$(TARGET_PATH) $(MAKE) -j $(CONFIG_JLEVEL) -C $(PKG_BUILD_DIR) \ PREFIX= \ DEVEL_PREFIX=/ \ |