I'm having an issue with two functions that I have defined and they are as follows:
#return the full path of the passed in dir/file with the drive letter removed
define clean_path
$(patsubst $(DRIVE_ROOT)/%,/%,$(abspath $(1)))
endef
#appends the root directory name to the paths except for paths that are absolute.
define qualify_path
$(addprefix $(1),$(filter-out /%,$(2))) $(filter /%,$(2))
endef
The qualify_path function is to look at a list of paths and any directory that doesnt start with / it will add $(1) to it. Both of these functions work independently but my problem is when I am using them together.
In a makefile I have the following lines:
TEMP_DIRS := $(call qualify_path, $(lastword $(dirstack)), $(SRC_INCDIRS))
$(info TEMP_DIRS = $(TEMP_DIRS))
CLEAN_DIRS := $(call clean_path, $(TEMP_DIRS))
$(info CLEAN_DIRS = $(CLEAN_DIRS))
When these lines get run I end up with $(TEMP_DIRS) having the appropriate values assigned to it but $(CLEAN_DIRS) has the same values as $(TEMP_DIRS). I have $(TEMP_DIRS) just for debugging at this point I would really just want to combine them like this:
CLEAN_DIRS := $(call clean_path, $(call qualify_path, $(lastword $(dirstack)), $(SRC_INCDIRS)))
Now if I use this instead of doing a call to clean_path:
TEMP_DIRS := $(call qualify_path, $(lastword $(dirstack)), $(SRC_INCDIRS))
$(info TEMP_DIRS = $(TEMP_DIRS))
CLEAN_DIRS := $(patsubst $(DRIVE_ROOT)/%,/%,$(abspath $(TEMP_DIRS)))
$(info CLEAN_DIRS = $(CLEAN_DIRS))
$(CLEAN_DIRS) has all the right values in it. I am sure it has something to do with expansion orders, using eval, or something of the sort but I really cannot figure this out. If someone could please explain the proper way of doing what I am attempting that would be great. As always thanks for your time.
DRIVE_ROOT,dirstack, etc? Or even better, the whole makefile? – Eldar Abusalimov May 24 '12 at 15:41