summaryrefslogtreecommitdiff
path: root/main/Makefile
diff options
context:
space:
mode:
authorCorey Farrell <git@cfware.com>2017-11-03 11:35:34 -0400
committerCorey Farrell <git@cfware.com>2017-11-03 11:35:34 -0400
commit290bad22c9a1e1f191708b2d2876cfc4843b5aa5 (patch)
treebc93de86d60ff2dd590aae6b1e31fd9312fa034f /main/Makefile
parent325b5dd30fe5ede5326ed96b448ee61dd5a51c2f (diff)
Build System: Fix build failure caused by recent CLI improvements.
We use the editline library to help with filename completion in our CLI interface. Some systems failed to find the header when included from loader.c. This is fixed by setting the proper CFLAGS for the build of loader.o. ASTERISK-27378 Change-Id: Ib7fd496f1d7ed48141a2eadd5dd61cab2f2308be
Diffstat (limited to 'main/Makefile')
-rw-r--r--main/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/Makefile b/main/Makefile
index 968f74658..08d1f6558 100644
--- a/main/Makefile
+++ b/main/Makefile
@@ -149,7 +149,7 @@ endif
db.o: _ASTCFLAGS+=$(SQLITE3_INCLUDE)
asterisk.o: _ASTCFLAGS+=$(LIBEDIT_INCLUDE)
-cli.o: _ASTCFLAGS+=$(LIBEDIT_INCLUDE)
+loader.o: _ASTCFLAGS+=$(LIBEDIT_INCLUDE)
json.o: _ASTCFLAGS+=$(JANSSON_INCLUDE)
bucket.o: _ASTCFLAGS+=$(URIPARSER_INCLUDE)
crypt.o: _ASTCFLAGS+=$(CRYPT_INCLUDE)