Improve handling of absolute paths in out directory

Change-Id: If6b320e274fb1cee33808424246ce2c88b9b7ef5
This commit is contained in:
Jean-Baptiste Queru 2011-12-06 16:32:40 -08:00
parent ffe03c984b
commit 8af0efd6a1
1 changed files with 5 additions and 1 deletions

View File

@ -42,7 +42,11 @@ ifdef dumpvar_goals
absolute_dumpvar := $(strip $(filter abs-%,$(dumpvar_goals)))
ifdef absolute_dumpvar
dumpvar_goals := $(patsubst abs-%,%,$(dumpvar_goals))
DUMPVAR_VALUE := $(PWD)/$($(dumpvar_goals))
ifneq ($(filter /%,$($(dumpvar_goals))),)
DUMPVAR_VALUE := $($(dumpvar_goals))
else
DUMPVAR_VALUE := $(PWD)/$($(dumpvar_goals))
endif
dumpvar_target := dumpvar-abs-$(dumpvar_goals)
else
DUMPVAR_VALUE := $($(dumpvar_goals))