aboutsummaryrefslogtreecommitdiffstats
path: root/codecs
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-07-26 23:12:47 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-07-26 23:12:47 +0000
commitf6647e8d2250bf717a46ecb5167dbae8d5a899d1 (patch)
tree085a3e9bbda36415295ebaeb3744fc7366a42f05 /codecs
parentb3bce897f991dfff403e9e8bbc9b0db6ff457ce5 (diff)
fix setting the CFLAGS for building codec libs so that they are built with
astmm support and astmm doesn't get really upset and complain that it is being asked to free memory that was never allocated git-svn-id: http://svn.digium.com/svn/asterisk/trunk@38271 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'codecs')
-rw-r--r--codecs/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/codecs/Makefile b/codecs/Makefile
index bb0de7582..f476e8a2b 100644
--- a/codecs/Makefile
+++ b/codecs/Makefile
@@ -42,14 +42,14 @@ clean::
gsm/lib/libgsm.a:
@mkdir -p gsm/lib
- @CFLAGS="$(ASTCFLAGS) -I." $(MAKE) -C gsm lib/libgsm.a
+ @CFLAGS="$(CFLAGS) -I." $(MAKE) -C gsm lib/libgsm.a
$(LIBLPC10):
- @CFLAGS="$(ASTCFLAGS)" $(MAKE) -C lpc10 all
+ @$(MAKE) -C lpc10 all
codec_lpc10.so: $(LIBLPC10)
$(LIBILBC):
- @CFLAGS="$(ASTCFLAGS)" $(MAKE) -C ilbc all
+ @$(MAKE) -C ilbc all
codec_ilbc.so: $(LIBILBC)