From 6116f369e98afef29e284c6148414d8c5832689d Mon Sep 17 00:00:00 2001 From: Martin Roth Date: Tue, 8 Mar 2016 12:32:40 -0700 Subject: codebase: Change makefile $(shell pwd) commands to $(CURDIR) - Change the makefile command $(shell pwd) to $(CURDIR) to find the current directory without going out to the shell. Change-Id: I4890eba6129630acd2883b92de77308d39949443 Signed-off-by: Martin Roth Reviewed-on: https://review.coreboot.org/13967 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer Reviewed-by: Paul Menzel --- payloads/coreinfo/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'payloads/coreinfo') diff --git a/payloads/coreinfo/Makefile b/payloads/coreinfo/Makefile index f4a897cac0..ab25bf3dc3 100644 --- a/payloads/coreinfo/Makefile +++ b/payloads/coreinfo/Makefile @@ -14,7 +14,7 @@ ## GNU General Public License for more details. ## -src := $(shell pwd) +src := $(CURDIR) srctree := $(src) srck := $(src)/../../util/kconfig coreinfo_obj := $(src)/build @@ -88,18 +88,18 @@ include $(src)/.config real-all: $(TARGET) $(TARGET): $(src)/.config $(coreinfo_obj)/config.h $(OBJS) libpayload - printf " LPCC $(subst $(shell pwd)/,,$(@)) (LINK)\n" + printf " LPCC $(subst $(CURDIR)/,,$(@)) (LINK)\n" $(LPCC) -o $@ $(OBJS) $(OBJCOPY) --only-keep-debug $@ $(TARGET).debug $(OBJCOPY) --strip-debug $@ $(OBJCOPY) --add-gnu-debuglink=$(TARGET).debug $@ $(coreinfo_obj)/%.S.o: $(src)/%.S libpayload - printf " LPAS $(subst $(shell pwd)/,,$(@))\n" + printf " LPAS $(subst $(CURDIR)/,,$(@))\n" $(LPAS) -o $@ $< $(coreinfo_obj)/%.o: $(src)/%.c libpayload - printf " LPCC $(subst $(shell pwd)/,,$(@))\n" + printf " LPCC $(subst $(CURDIR)/,,$(@))\n" $(LPCC) $(CFLAGS) -c -o $@ $< else -- cgit v1.2.3