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 <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/13967
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
Martin Roth
2016-03-08 12:32:40 -07:00
parent 00e49aed52
commit 6116f369e9
7 changed files with 19 additions and 19 deletions

View File

@@ -1,4 +1,4 @@
obj ?= $(shell pwd)
obj ?= $(CURDIR)
HOSTCC ?= gcc
CFLAGS ?= -g

View File

@@ -21,7 +21,7 @@ PROGRAM = viatool
CC ?= gcc
INSTALL ?= /usr/bin/install
PREFIX ?= /usr/local
CFLAGS ?= -O2 -g -Wall -W -I$(shell pwd)
CFLAGS ?= -O2 -g -Wall -W -I$(CURDIR)
LDFLAGS += -lpci -lz
SRCS = viatool.c \