[svn-commits] kpfleming: trunk r370488 - /trunk/main/Makefile

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Jul 25 09:27:51 CDT 2012


Author: kpfleming
Date: Wed Jul 25 09:27:48 2012
New Revision: 370488

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=370488
Log:
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.


Modified:
    trunk/main/Makefile

Modified: trunk/main/Makefile
URL: http://svnview.digium.com/svn/asterisk/trunk/main/Makefile?view=diff&rev=370488&r1=370487&r2=370488
==============================================================================
--- trunk/main/Makefile (original)
+++ trunk/main/Makefile Wed Jul 25 09:27:48 2012
@@ -146,7 +146,7 @@
 
 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)




More information about the svn-commits mailing list