download.mk: fix bzr download method

SVN-Revision: 20582
This commit is contained in:
Nicolas Thill 2010-03-29 13:06:19 +00:00
parent 9027c87ce6
commit 4ba18f5916

View File

@ -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