From b26a4673779e9ab57b468972a90f3d7e4dc34d29 Mon Sep 17 00:00:00 2001 From: Mike Jerris Date: Wed, 27 Feb 2019 15:29:46 -0700 Subject: [PATCH] FS-10530: [mod_opusfile] fix Makefile for include path --- src/mod/formats/mod_opusfile/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mod/formats/mod_opusfile/Makefile.am b/src/mod/formats/mod_opusfile/Makefile.am index f2a293674a..abf251e700 100644 --- a/src/mod/formats/mod_opusfile/Makefile.am +++ b/src/mod/formats/mod_opusfile/Makefile.am @@ -8,12 +8,12 @@ mod_opusfile_la_LIBADD = $(switch_builddir)/libfreeswitch.la mod_opusfile_la_LDFLAGS = -avoid-version -module -no-undefined -shared if HAVE_OPUSFILE_DECODE -mod_opusfile_la_CFLAGS += -I$(OPUSFILE_DECODE_CFLAGS) +mod_opusfile_la_CFLAGS += $(OPUSFILE_DECODE_CFLAGS) mod_opusfile_la_LIBADD += $(OPUSFILE_DECODE_LIBS) endif if HAVE_OPUSFILE_ENCODE -mod_opusfile_la_CFLAGS += -I$(OPUSFILE_ENCODE_CFLAGS) -DHAVE_OPUSFILE_ENCODE +mod_opusfile_la_CFLAGS += $(OPUSFILE_ENCODE_CFLAGS) -DHAVE_OPUSFILE_ENCODE mod_opusfile_la_LIBADD += $(OPUSFILE_ENCODE_LIBS) endif