Changeset 979 for trunk/kBuild/footer.kmk
- Timestamp:
- May 27, 2007, 9:05:11 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/footer.kmk
r966 r979 1427 1427 # Adjust paths if we got a default path. 1428 1428 ifneq ($(defpath),) 1429 objs := $( call abspathex,$(objs),$(defpath))1430 deps := $( call abspathex,$(deps),$(defpath))1431 orderdeps := $( call abspathex,$(orderdeps),$(defpath))1432 othersrc := $( call abspathex,$(othersrc),$(defpath))1429 objs := $(abspathex $(objs),$(defpath)) 1430 deps := $(abspathex $(deps),$(defpath)) 1431 orderdeps := $(abspathex $(orderdeps),$(defpath)) 1432 othersrc := $(abspathex $(othersrc),$(defpath)) 1433 1433 endif 1434 1434 … … 1727 1727 # Adjust paths if we got a default path. 1728 1728 ifneq ($(defpath),) 1729 libpath := $( call abspathex,$(libpath),$(defpath))1730 objs := $( call abspathex,$(objs),$(defpath))1731 deps := $( call abspathex,$(deps),$(defpath))1732 orderdeps := $( call abspathex,$(orderdeps),$(defpath))1733 othersrc := $( call abspathex,$(othersrc),$(defpath))1729 libpath := $(abspathex $(libpath),$(defpath)) 1730 objs := $(abspathex $(objs),$(defpath)) 1731 deps := $(abspathex $(deps),$(defpath)) 1732 orderdeps := $(abspathex $(orderdeps),$(defpath)) 1733 othersrc := $(abspathex $(othersrc),$(defpath)) 1734 1734 # libs are not subject to this because of the the -l<lib> stuff. Use $(<target>_PATH)/lib if relative to current dir! 1735 1735 endif … … 2087 2087 # Adjust the source if we got a default PATH. (This must be done this late!) 2088 2088 ifdef $(target)_PATH 2089 srcsrc := $( call abspathex,$(srcsrc),$($(target)_PATH))2089 srcsrc := $(abspathex $(srcsrc),$($(target)_PATH)) 2090 2090 endif 2091 2091
Note:
See TracChangeset
for help on using the changeset viewer.