diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-12-14 05:10:23 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-12-14 05:10:23 +0000 |
commit | 10e064f98c4d28bf84ebc116b8bf82457eacdd03 (patch) | |
tree | 098d2d01e05453ff7094d6dcc93c5c4456fe1f3e /toolchain/Makefile | |
parent | ed01170dfed7c661529740f0e4756aa3f633d7bb (diff) |
fix ccache build order
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5783 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain/Makefile')
-rw-r--r-- | toolchain/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/toolchain/Makefile b/toolchain/Makefile index ceae2269a..4682dbed1 100644 --- a/toolchain/Makefile +++ b/toolchain/Makefile @@ -25,7 +25,10 @@ install: $(TARGETS_INSTALL) clean: $(TARGETS_CLEAN) $(TARGETS_INSTALL): $(STAGING_DIR)/$(REAL_GNU_TARGET_NAME) -uClibc-prepare: ccache-prepare kernel-headers-prepare +ifeq ($(CONFIG_CCACHE),y) + uClibc-prepare: ccache-install +endif +uClibc-prepare: kernel-headers-prepare ifeq ($(CONFIG_NATIVE_TOOLCHAIN),) binutils-prepare: uClibc-prepare gcc-prepare: binutils-install |