Author: uwe Date: Tue Sep 28 23:11:48 2010 New Revision: 5878 URL: https://tracker.coreboot.org/trac/coreboot/changeset/5878
Log: As $PWD is not exported by all shells, use make-builtin $(CURDIR) instead of $(PWD).
Signed-off-by: Jonathan Kollasch jakllsch@kollasch.net Acked-by: Peter Stuge peter@stuge.se Acked-by: Uwe Hermann uwe@hermann-uwe.de
Modified: trunk/Makefile
Modified: trunk/Makefile ============================================================================== --- trunk/Makefile Tue Sep 28 23:02:03 2010 (r5877) +++ trunk/Makefile Tue Sep 28 23:11:48 2010 (r5878) @@ -32,7 +32,7 @@ HOSTCXX:=$(CC_real) --hostcxx endif
-export top := $(PWD) +export top := $(CURDIR) export src := src export srck := $(top)/util/kconfig export obj ?= build @@ -196,7 +196,7 @@ $$(abspath $$(patsubst src/%, \ $(obj)/%, \ $$(addprefix $(dir $(1)),$$($(type)-y))))))) \ - $(eval subdirs+=$$(subst $(PWD)/,,$$(abspath $$(addprefix $(dir $(1)),$$(subdirs-y))))) + $(eval subdirs+=$$(subst $(CURDIR)/,,$$(abspath $$(addprefix $(dir $(1)),$$(subdirs-y)))))
# For each path in $(subdirs) call includemakefiles, passing $(1) as $(3) # Repeat until subdirs is empty