diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-01-16 10:27:48 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-01-16 10:27:48 +0000 |
commit | d58636d7658f5f5455f417b1ad81ed0dab361d56 (patch) | |
tree | e2373ce42328c86320a6b4cd84f686ead63d5ce7 /docs | |
parent | 2b893123a52e9f42922d3312768f7467d190cb7e (diff) |
buildroot: add BR2_BACKUP_SITE and DOWNLOAD helper
This is the long requested backup mirror support. So far only enabled
for Makefile.autotools.in, but there's no reason why we cannot use
DOWNLOAD everywhere.
Notice, I'm still syncing http://buildroot.uclibc.org/downloads/sources/
Diffstat (limited to 'docs')
-rw-r--r-- | docs/buildroot.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/buildroot.html b/docs/buildroot.html index 0862b1beb..b282a19a6 100644 --- a/docs/buildroot.html +++ b/docs/buildroot.html @@ -994,7 +994,7 @@ endif <a name="ex2line11" id="ex2line11">11</a> FOO_TARGET_BINARY:=usr/bin/foo <a name="ex2line12" id="ex2line12">12</a> <a name="ex2line13" id="ex2line13">13</a> $(DL_DIR)/$(FOO_SOURCE): - <a name="ex2line14" id="ex2line14">14</a> $(WGET) -P $(DL_DIR) $(FOO_SITE)/$(FOO_SOURCE) + <a name="ex2line14" id="ex2line14">14</a> $(call DOWNLOAD,$(FOO_SITE),$(FOO_SOURCE)) <a name="ex2line15" id="ex2line15">15</a> <a name="ex2line16" id="ex2line16">16</a> $(FOO_DIR)/.source: $(DL_DIR)/$(FOO_SOURCE) <a name="ex2line17" id="ex2line17">17</a> $(ZCAT) $(DL_DIR)/$(FOO_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) - |