diff options
author | Mike Baker <mbm@openwrt.org> | 2006-07-20 17:28:05 +0000 |
---|---|---|
committer | Mike Baker <mbm@openwrt.org> | 2006-07-20 17:28:05 +0000 |
commit | edbbc226a407a137a1167d62563ee46c521353d8 (patch) | |
tree | d897a38a9b8e36a263f182298f2a454bb90bcd27 /toolchain/Makefile | |
parent | 0e35b3b26c200ed3f5bf14717feb71e73db40416 (diff) | |
download | upstream-edbbc226a407a137a1167d62563ee46c521353d8.tar.gz upstream-edbbc226a407a137a1167d62563ee46c521353d8.tar.bz2 upstream-edbbc226a407a137a1167d62563ee46c521353d8.zip |
change 'source' to 'download'
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4176 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain/Makefile')
-rw-r--r-- | toolchain/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/toolchain/Makefile b/toolchain/Makefile index 043a119b15..4ffc46fb34 100644 --- a/toolchain/Makefile +++ b/toolchain/Makefile @@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk TARGETS-y:=sed kernel-headers sstrip binutils gcc uClibc ipkg-utils libnotimpl squashfs jffs2 lzma TARGETS-$(CONFIG_GDB) += gdb -TARGETS_DOWNLOAD:=$(patsubst %,%-source,$(TARGETS-y)) +TARGETS_DOWNLOAD:=$(patsubst %,%-download,$(TARGETS-y)) TARGETS_INSTALL:=$(patsubst %,%-install,$(TARGETS-y)) TARGETS_CLEAN:=$(patsubst %,%-clean,$(TARGETS-y)) @@ -41,8 +41,8 @@ $(STAGING_DIR): $(TOOL_BUILD_DIR): @mkdir -p $@ -%-source: FORCE - $(MAKE) -C $(patsubst %-source,%,$@) source +%-download: FORCE + $(MAKE) -C $(patsubst %-download,%,$@) download %-prepare: $(TOOLCHAIN_STAMP_DIR) $(STAGING_DIR) $(TOOL_BUILD_DIR) FORCE @[ -f $(TOOLCHAIN_STAMP_DIR)/.toolchain_$@ ] || { \ |