[asterisk-commits] trunk r22438 - /trunk/pbx/Makefile
    asterisk-commits at lists.digium.com 
    asterisk-commits at lists.digium.com
       
    Tue Apr 25 11:29:03 MST 2006
    
    
  
Author: kpfleming
Date: Tue Apr 25 13:29:02 2006
New Revision: 22438
URL: http://svn.digium.com/view/asterisk?rev=22438&view=rev
Log:
don't rely on default search paths for finding local include files
Modified:
    trunk/pbx/Makefile
Modified: trunk/pbx/Makefile
URL: http://svn.digium.com/view/asterisk/trunk/pbx/Makefile?rev=22438&r1=22437&r2=22438&view=diff
==============================================================================
--- trunk/pbx/Makefile (original)
+++ trunk/pbx/Makefile Tue Apr 25 13:29:02 2006
@@ -54,10 +54,10 @@
 	$(CC) $(SOLINK) -o $@ pbx_ael.o ael/aelbison.o ael/aelflex.o
 
 ael/aelflex.o: ael/ael_lex.c ../include/asterisk/ael_structs.h ael/ael.tab.h
-	$(CC) $(CFLAGS) -c -o ael/aelflex.o ael/ael_lex.c
+	$(CC) $(CFLAGS) -I. -c -o ael/aelflex.o ael/ael_lex.c
 
 ael/aelbison.o: ael/ael.tab.c ael/ael.tab.h ../include/asterisk/ael_structs.h
-	$(CC) $(CFLAGS) -c -o ael/aelbison.o ael/ael.tab.c
+	$(CC) $(CFLAGS) -I. -c -o ael/aelbison.o ael/ael.tab.c
 
 ael/ael_lex.c: ael/ael.flex
 	(cd ael; flex ael.flex)
    
    
More information about the asterisk-commits
mailing list