mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-17 15:29:05 +00:00
This patch from 10249 is worth applying! It prevents downloading sound files if they are already downloaded. Darn Practical, if you ask me
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@76211 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -131,13 +131,13 @@ $(MOH_DIR)/.asterisk-moh-%: have_download
|
|||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
asterisk-core-%.tar.gz: have_download
|
asterisk-core-%.tar.gz: have_download
|
||||||
@$(DOWNLOAD) $(WGET_ARGS) $(SOUNDS_URL)/$@
|
@if test ! -f $@ ;then $(DOWNLOAD) $(WGET_ARGS) $(SOUNDS_URL)/$@;fi
|
||||||
|
|
||||||
asterisk-extra-%.tar.gz: have_download
|
asterisk-extra-%.tar.gz: have_download
|
||||||
@$(DOWNLOAD) $(WGET_ARGS) $(SOUNDS_URL)/$@
|
@if test ! -f $@ ;then $(DOWNLOAD) $(WGET_ARGS) $(SOUNDS_URL)/$@;fi
|
||||||
|
|
||||||
asterisk-moh-%.tar.gz: have_download
|
asterisk-moh-%.tar.gz: have_download
|
||||||
@$(DOWNLOAD) $(WGET_ARGS) $(SOUNDS_URL)/$@
|
@if test ! -f $@ ;then $(DOWNLOAD) $(WGET_ARGS) $(SOUNDS_URL)/$@;fi
|
||||||
|
|
||||||
dist-clean:
|
dist-clean:
|
||||||
rm -f *.tar.gz
|
rm -f *.tar.gz
|
||||||
|
|||||||
Reference in New Issue
Block a user