[asterisk-commits] russell: branch 1.4 r48223 -
/branches/1.4/sounds/Makefile
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Sat Dec 2 23:34:14 MST 2006
Author: russell
Date: Sun Dec 3 00:34:14 2006
New Revision: 48223
URL: http://svn.digium.com/view/asterisk?view=rev&rev=48223
Log:
When "fetch" is in use, instead of "wget", --continue is not a valid option.
(issue #8451)
Modified:
branches/1.4/sounds/Makefile
Modified: branches/1.4/sounds/Makefile
URL: http://svn.digium.com/view/asterisk/branches/1.4/sounds/Makefile?view=diff&rev=48223&r1=48222&r2=48223
==============================================================================
--- branches/1.4/sounds/Makefile (original)
+++ branches/1.4/sounds/Makefile Sun Dec 3 00:34:14 2006
@@ -52,7 +52,10 @@
MM:=$(subst -G722,-g722,$(MM))
MOH:=$(MM:MOH-%=asterisk-moh-%.tar.gz)
MOH_TAGS:=$(MM:MOH-%=$(MOH_DIR)/.asterisk-moh-%)
+# If "fetch" is used, --continue is not a valid option.
+ifeq ($(WGET),wget)
WGET_ARGS:=--continue
+endif
all: $(CORE_SOUNDS) $(EXTRA_SOUNDS) $(MOH)
More information about the asterisk-commits
mailing list