diff options
author | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2016-03-01 12:55:47 -0800 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2016-03-02 18:53:19 +0100 |
commit | 9b1936dc829ef1c0fd32368ecbce432f1b05cffb (patch) | |
tree | 9cc6eeaaafd890f1623fb4a804ba2870eb5c3937 /util | |
parent | ed5642234ada914d057c31e77c322932e2e0e641 (diff) |
buildgcc: Use $(CURDIR) instead of $(PWD)
coreboot's top level Makefile does the same, so let's stay consistent.
Change-Id: I9e995f3ecadd05d6fbfda64b45dee3a9900d9189
Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-on: https://review.coreboot.org/13869
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'util')
-rw-r--r-- | util/crossgcc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/crossgcc/Makefile b/util/crossgcc/Makefile index 62adb7fcc0..0831f181f0 100644 --- a/util/crossgcc/Makefile +++ b/util/crossgcc/Makefile @@ -1,6 +1,6 @@ # if no architecture is specified, set a default BUILD_PLATFORM ?= i386-elf -DEST ?= $(PWD)/xgcc +DEST ?= $(CURDIR)/xgcc # For the toolchain builds, use CPUS=x to use multiple processors to build # use KEEP_SOURCES=1 to keep temporary files after the build |