From 36962da06cc45198958508c92d07dfe4aeadd05b Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Sun, 11 Sep 2011 00:58:49 -0500 Subject: [PATCH] configure: Fix for compiler-specific includes Need to search the include/compiler/ dirs for all external modules listed in the RELEASE file as well. --- configure/CONFIG_APP_INCLUDE | 1 + 1 file changed, 1 insertion(+) diff --git a/configure/CONFIG_APP_INCLUDE b/configure/CONFIG_APP_INCLUDE index 3951ed282..46739aef7 100644 --- a/configure/CONFIG_APP_INCLUDE +++ b/configure/CONFIG_APP_INCLUDE @@ -12,6 +12,7 @@ define RELEASE_FLAGS_template $(1)_BIN = $$(wildcard $$(strip $$($(1)))/bin/$$(T_A)) $(1)_LIB = $$(wildcard $$(strip $$($(1)))/lib/$$(T_A)) SHRLIB_SEARCH_DIRS += $$($(1)_LIB) + RELEASE_INCLUDES += $$(addprefix -I,$$(wildcard $$(strip $$($(1)))/include/compiler/$$(CMPLR_CLASS))) RELEASE_INCLUDES += $$(addprefix -I,$$(wildcard $$(strip $$($(1)))/include/os/$$(OS_CLASS))) RELEASE_INCLUDES += $$(addprefix -I,$$(wildcard $$(strip $$($(1)))/include)) RELEASE_DBDFLAGS += $$(addprefix -I,$$(wildcard $$(strip $$($(1)))/dbd))