Changeset 1416 for trunk/kBuild/footer.kmk
- Timestamp:
- Mar 18, 2008, 11:37:29 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/footer.kmk
r1415 r1416 626 626 define def_templates_include 627 627 ifndef TEMPLATE_$(template) 628 TEMPLATE_$(template)_INCLUDE_FILE_ := $(firstword $(foreach path, $( TEMPLATE_PATHS) $(PATH_KBUILD)/templates/, $(wildcard $(path)/$(template).kmk)))628 TEMPLATE_$(template)_INCLUDE_FILE_ := $(firstword $(foreach path, $(KBUILD_TEMPLATE_PATHS) $(PATH_KBUILD)/templates $(KBUILD_DEFAULT_PATHS), $(wildcard $(path)/$(template).kmk))) 629 629 ifneq ($(TEMPLATE_$(template)_INCLUDE_FILE_),) 630 630 include $(TEMPLATE_$(template)_INCLUDE_FILE_) … … 1178 1178 define def_tools_load_function 1179 1179 ifndef TOOL_$(loading) 1180 TOOL_$(loading)_KMK_FILE := $(firstword $(foreach path, $( TOOL_PATHS) $(PATH_KBUILD)/tools, $(wildcard $(path)/$(loading).kmk)))1180 TOOL_$(loading)_KMK_FILE := $(firstword $(foreach path, $(KBUILD_TOOL_PATHS) $(PATH_KBUILD)/tools $(KBUILD_DEFAULT_PATHS), $(wildcard $(path)/$(loading).kmk))) 1181 1181 ifeq ($(TOOL_$(loading)_KMK_FILE),) 1182 $(error kBuild: Cannot find include file for the tool '$(loading)'! Searched: $( TOOL_PATHS) $(PATH_KBUILD)/tools)1182 $(error kBuild: Cannot find include file for the tool '$(loading)'! Searched: $(KBUILD_TOOL_PATHS) $(PATH_KBUILD)/tools $(KBUILD_DEFAULT_PATHS)) 1183 1183 endif 1184 1184 include $(TOOL_$(loading)_KMK_FILE) … … 1193 1193 define def_sdk_load_function 1194 1194 ifndef SDK_$(loading) 1195 SDK_$(loading)_KMK_FILE := $(firstword $(foreach path, $( SDK_PATHS) $(PATH_KBUILD)/sdks, $(wildcard $(path)/$(loading).kmk)))1195 SDK_$(loading)_KMK_FILE := $(firstword $(foreach path, $(KBUILD_SDK_PATHS) $(PATH_KBUILD)/sdks $(KBUILD_DEFAULT_PATHS), $(wildcard $(path)/$(loading).kmk))) 1196 1196 ifeq ($(SDK_$(loading)_KMK_FILE),) 1197 $(error kBuild: Cannot find include file for the SDK '$(loading)'! Searched: $( SDK_PATHS) $(PATH_KBUILD)/sdks)1197 $(error kBuild: Cannot find include file for the SDK '$(loading)'! Searched: $(KBUILD_SDK_PATHS) $(PATH_KBUILD)/sdks $(KBUILD_DEFAULT_PATHS)) 1198 1198 endif 1199 1199 include $(SDK_$(loading)_KMK_FILE)
Note:
See TracChangeset
for help on using the changeset viewer.