diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-03-13 12:50:23 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-03-13 12:50:23 +0000 |
commit | ec6b3bf2bef97206aedec6a7dd253d77f3ee6882 (patch) | |
tree | b5e82ccfef7761aa8b3b15a7f330ffe7ffe2b01a /toolchain/uClibc | |
parent | 44553edacc8c3d54bcdcf24fc50a34d3d14b2397 (diff) | |
download | upstream-ec6b3bf2bef97206aedec6a7dd253d77f3ee6882.tar.gz upstream-ec6b3bf2bef97206aedec6a7dd253d77f3ee6882.tar.bz2 upstream-ec6b3bf2bef97206aedec6a7dd253d77f3ee6882.zip |
fix stampfile variables for the toolchain build (fixes gcc compile error)
SVN-Revision: 14862
Diffstat (limited to 'toolchain/uClibc')
-rw-r--r-- | toolchain/uClibc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolchain/uClibc/Makefile b/toolchain/uClibc/Makefile index 61dcaaaff5..3de6bc8878 100644 --- a/toolchain/uClibc/Makefile +++ b/toolchain/uClibc/Makefile @@ -59,8 +59,8 @@ endif include $(INCLUDE_DIR)/toolchain-build.mk -STAMP_BUILT:=$(TOOLCHAIN_DIR)/stamp/.uclibc_installed -STAMP_INSTALLED:=$(TOOLCHAIN_DIR)/stamp/.uclibc-utils_installed +HOST_STAMP_BUILT:=$(TOOLCHAIN_DIR)/stamp/.uclibc_installed +HOST_STAMP_INSTALLED:=$(TOOLCHAIN_DIR)/stamp/.uclibc-utils_installed UCLIBC_TARGET_ARCH:=$(shell echo $(ARCH) | sed -e s'/-.*//' \ -e 's/i.86/i386/' \ |