Author: murf
Date: Fri Jul 20 16:41:51 2007
New Revision: 76213
URL: http://svn.digium.com/view/asterisk?view=rev&rev=76213
Log:
Merged revisions 76211 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r76211 | murf | 2007-07-20 15:36:05 -0600 (Fri, 20 Jul 2007) | 1 line
This patch from 10249 is worth applying! It prevents downloading sound files if
they are already downloaded. Darn Practical, if you ask me
........
Modified:
trunk/ (props changed)
trunk/sounds/Makefile
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/sounds/Makefile
URL:
http://svn.digium.com/view/asterisk/trunk/sounds/Makefile?view=diff&rev=76213&r1=76212&r2=76213
==============================================================================
--- trunk/sounds/Makefile (original)
+++ trunk/sounds/Makefile Fri Jul 20 16:41:51 2007
@@ -130,13 +130,13 @@
touch $@
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
- @$(DOWNLOAD) $(WGET_ARGS) $(SOUNDS_URL)/$@
+ @if test ! -f $@ ;then $(DOWNLOAD) $(WGET_ARGS) $(SOUNDS_URL)/$@;fi
asterisk-moh-%.tar.gz: have_download
- @$(DOWNLOAD) $(WGET_ARGS) $(SOUNDS_URL)/$@
+ @if test ! -f $@ ;then $(DOWNLOAD) $(WGET_ARGS) $(SOUNDS_URL)/$@;fi
dist-clean:
rm -f *.tar.gz
_______________________________________________
--Bandwidth and Colocation Provided by http://www.api-digital.com--
svn-commits mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/svn-commits