From: Nicolas Thill Date: Mon, 29 Mar 2010 13:06:19 +0000 (+0000) Subject: download.mk: fix bzr download method X-Git-Tag: reboot~20387 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Fchunkeey.git;a=commitdiff_plain;h=4ba18f59168f2b7a05e4b5153ac7484c6660522e download.mk: fix bzr download method SVN-Revision: 20582 --- diff --git a/include/download.mk b/include/download.mk index c924ca0516..9dd26a7447 100644 --- a/include/download.mk +++ b/include/download.mk @@ -104,10 +104,10 @@ define DownloadMethod/bzr cd $(TMP_DIR)/dl && \ rm -rf $(SUBDIR) && \ [ \! -d $(SUBDIR) ] && \ - bzr export -r$(VERSION) $(URL) $(SUBDIR) && \ + bzr export -r$(VERSION) $(SUBDIR) $(URL) && \ echo "Packing checkout..." && \ $(call dl_pack,$(TMP_DIR)/dl/$(FILE),$(SUBDIR)) && \ - mv $(TMP_DIR)/dl/$(FILE) $(DL_DIR)/ && + mv $(TMP_DIR)/dl/$(FILE) $(DL_DIR)/ && \ rm -rf $(SUBDIR); \ ) endef