summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2012-07-25 14:27:48 +0000
committerKevin P. Fleming <kpfleming@digium.com>2012-07-25 14:27:48 +0000
commit969e625749038e247249bd6ea616b76d0c69fb8d (patch)
treef9d8ac9ea87becbed25a9793d30ab6aa47f76dda /main
parent67f8a62fc97963e69b1fc9c5e0e47718d692c7d5 (diff)
Repair editline builds using in-tree editline sources.
The previous change to the build system for using a system-provided editline library was missing a crucial include directory for building against the copy of the library in the Asterisk source tree. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@370488 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main')
-rw-r--r--main/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/Makefile b/main/Makefile
index aa8dfb6ba..9387a0487 100644
--- a/main/Makefile
+++ b/main/Makefile
@@ -146,7 +146,7 @@ testexpr2: ast_expr2f.c ast_expr2.c ast_expr2.h
ifneq ($(LIBEDIT_INTERNAL),no)
LIBEDIT_OBJ=editline/libedit.a
-LIBEDIT_INCLUDE=-I$(ASTTOPDIR)/main/editline
+LIBEDIT_INCLUDE=-I. -Ieditline
endif
db.o: _ASTCFLAGS+=$(SQLITE3_INCLUDE)