fix makefile syntax errors

This commit is contained in:
Michael Jerris 2014-10-01 17:52:01 -04:00
parent 789e1481ed
commit 5e11744632
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ MODNAME=mod_g729
G729_DIR=$(switch_srcdir)/libs/libg729
G729_BUILDDIR=$(switch_builddir)/libs/libg729
G729_A=$(BUILDDIR)/.libs/libg729.a
G729_A=$(G729_BUILDDIR)/.libs/libg729.a
mod_LTLIBRARIES = mod_g729.la
mod_g729_la_SOURCES = mod_g729.c
@ -13,7 +13,7 @@ mod_g729_la_LDFLAGS = -avoid-version -module -no-undefined -shared
if HAVE_G729
mod_g729_la_CFLAGS += -I$(G729_DIR)/src/include
mod_g729_la_LIBADD +- $(G729_A)
mod_g729_la_LIBADD += $(G729_A)
else
mod_g729_la_CFLAGS += -DG729_PASSTHROUGH
endif