summaryrefslogtreecommitdiff
path: root/codecs/Makefile
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2006-07-26 23:12:47 +0000
committerRussell Bryant <russell@russellbryant.com>2006-07-26 23:12:47 +0000
commitc1bd5cfe393f99e1cdc3955624a68969934a2cfb (patch)
tree085a3e9bbda36415295ebaeb3744fc7366a42f05 /codecs/Makefile
parentcc3029e871cb8c7363b235ada549d278c7ea6f1e (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: https://origsvn.digium.com/svn/asterisk/trunk@38271 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'codecs/Makefile')
-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)