summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2012-09-30 18:18:48 +0200
committerAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2012-09-30 18:18:48 +0200
commit19bc9e3c5a1757605e392592bce533f09024a81b (patch)
tree8718fe7313c2a898dbeb2429bd36030c96e7ecb6 /packages
parentfe5d6382fa8531efd89f9191c21101af14ec5aee (diff)
downloadembtoolkit-19bc9e3c5a1757605e392592bce533f09024a81b.tar.gz
embtoolkit-19bc9e3c5a1757605e392592bce533f09024a81b.tar.bz2
embtoolkit-19bc9e3c5a1757605e392592bce533f09024a81b.tar.xz
Build system: replace usage of DOWNLOAD_DIR with embtk_dldir
Signed-off-by: Abdoulaye Walsimou Gaye <awg@embtoolkit.org>
Diffstat (limited to 'packages')
-rw-r--r--packages/system/upstart/upstart.mk12
1 files changed, 6 insertions, 6 deletions
diff --git a/packages/system/upstart/upstart.mk b/packages/system/upstart/upstart.mk
index 35b4b1e..980138e 100644
--- a/packages/system/upstart/upstart.mk
+++ b/packages/system/upstart/upstart.mk
@@ -53,21 +53,21 @@ $(UPSTART_BUILD_DIR)/.installed: $(UPSTART_DEPS) download_upstart \
download_upstart:
$(call embtk_pinfo,"Downloading $(UPSTART_PACKAGE) \
if necessary...")
- @test -e $(DOWNLOAD_DIR)/$(UPSTART_PACKAGE) || \
- wget -O $(DOWNLOAD_DIR)/$(UPSTART_PACKAGE) \
+ @test -e $(embtk_dldir)/$(UPSTART_PACKAGE) || \
+ wget -O $(embtk_dldir)/$(UPSTART_PACKAGE) \
$(UPSTART_SITE)/$(UPSTART_PACKAGE)
ifeq ($(CONFIG_EMBTK_UPSTART_NEED_PATCH),y)
- @test -e $(DOWNLOAD_DIR)/upstart-$(UPSTART_VERSION).patch || \
- wget -O $(DOWNLOAD_DIR)/upstart-$(UPSTART_VERSION).patch \
+ @test -e $(embtk_dldir)/upstart-$(UPSTART_VERSION).patch || \
+ wget -O $(embtk_dldir)/upstart-$(UPSTART_VERSION).patch \
$(UPSTART_PATCH_SITE)/upstart-$(UPSTART_VERSION)-*.patch
endif
$(UPSTART_BUILD_DIR)/.decompressed:
$(call embtk_pinfo,"Decompressing $(UPSTART_PACKAGE) ...")
- @tar -C $(PACKAGES_BUILD) -xzf $(DOWNLOAD_DIR)/$(UPSTART_PACKAGE)
+ @tar -C $(PACKAGES_BUILD) -xzf $(embtk_dldir)/$(UPSTART_PACKAGE)
ifeq ($(CONFIG_EMBTK_UPSTART_NEED_PATCH),y)
@cd $(UPSTART_BUILD_DIR); \
- patch -p1 < $(DOWNLOAD_DIR)/upstart-$(UPSTART_VERSION).patch
+ patch -p1 < $(embtk_dldir)/upstart-$(UPSTART_VERSION).patch
endif
@touch $@