From 2dd3d523d3f5f4f5c4bd0790d1d38ea6685b03be Mon Sep 17 00:00:00 2001 From: Luigi Rizzo Date: Sun, 30 Apr 2006 08:35:49 +0000 Subject: [PATCH] when compiling ast_expr2 from utils/ the current directory is utils/ so the compiler fails to find the header which is in ../ (at least on FreeBSD; this works on linux but it may be due to differences in gmake). For the time being, fix it by adding -I.. to the includes. However i think a proper fix is to make sure that ast_expr2 is built using the rules in the top-level makefile instead of those in the subdirectory. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@23535 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4a5f7b0b0a..862e96801c 100644 --- a/Makefile +++ b/Makefile @@ -252,7 +252,7 @@ ifeq ($(OSARCH),SunOS) ID=/usr/xpg4/bin/id endif -INCLUDE+=-Iinclude -I../include +INCLUDE+=-Iinclude -I../include -I.. ASTCFLAGS+=-pipe -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations $(DEBUG) $(INCLUDE) #-DMAKE_VALGRIND_HAPPY ASTCFLAGS+=$(OPTIMIZE)