diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-01-16 11:48:43 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-01-16 11:48:43 +0000 |
commit | ed5f6093c0cf2b06b04e287a8cf0547440844733 (patch) | |
tree | b15192968b6f7b8ef0e64cb8f058afb0f9ceaef5 /target/x86/grub | |
parent | 0ef35d5d5efed2d323c1fc7a3f2cc7b1ed977da3 (diff) |
target/: convert to DOWNLOAD helper
Diffstat (limited to 'target/x86/grub')
-rw-r--r-- | target/x86/grub/grub.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/x86/grub/grub.mk b/target/x86/grub/grub.mk index b7484cb43..dd6aa7a32 100644 --- a/target/x86/grub/grub.mk +++ b/target/x86/grub/grub.mk @@ -62,10 +62,10 @@ GRUB_CONFIG-$(BR2_TARGET_GRUB_via_rhine) += --enable-via-rhine GRUB_CONFIG-$(BR2_TARGET_GRUB_w89c840) += --enable-w89c840 $(DL_DIR)/$(GRUB_SOURCE): - $(WGET) -P $(DL_DIR) $(GRUB_SITE)/$(GRUB_SOURCE) + $(call DOWNLOAD,$(GRUB_SITE),$(GRUB_SOURCE)) $(DL_DIR)/$(GRUB_PATCH): - $(WGET) -P $(DL_DIR) $(GRUB_PATCH_SITE)/$(GRUB_PATCH) + $(call DOWNLOAD,$(GRUB_PATCH_SITE),$(GRUB_PATCH)) grub-source: $(DL_DIR)/$(GRUB_SOURCE) $(DL_DIR)/$(GRUB_PATCH) |