diff options
author | Patrick Georgi <pgeorgi@google.com> | 2017-11-30 07:42:47 -0500 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2017-11-30 16:51:16 +0000 |
commit | 214dde058c876a7fc44c5da74d883c6856926a56 (patch) | |
tree | ca5aa9d0c78379fef7c917e5cc8fb5db45c9d4ff | |
parent | a6802ec30f5ea4821cea7e0d953b77865e4fdd52 (diff) | |
download | coreboot-214dde058c876a7fc44c5da74d883c6856926a56.tar.xz |
crossgcc: fix edk2 tools_def template
Forgot the /bin/ part of the executable paths
Change-Id: I87d63ec18338e376787d02bb771471e746a17b62
Signed-off-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-on: https://review.coreboot.org/22640
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
-rw-r--r-- | util/crossgcc/edk2tools.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util/crossgcc/edk2tools.txt b/util/crossgcc/edk2tools.txt index 8420c14772..0344bf2d25 100644 --- a/util/crossgcc/edk2tools.txt +++ b/util/crossgcc/edk2tools.txt @@ -4,10 +4,10 @@ # #################################################################################### -DEFINE COREBOOT_IA32_PREFIX = @@PREFIX@@/i386-elf- -DEFINE COREBOOT_X64_PREFIX = @@PREFIX@@/x86_64-elf- -DEFINE COREBOOT_ARM_PREFIX = @@PREFIX@@/arm-eabi- -DEFINE COREBOOT_AARCH64_PREFIX = @@PREFIX@@/arch64-elf- +DEFINE COREBOOT_IA32_PREFIX = @@PREFIX@@/bin/i386-elf- +DEFINE COREBOOT_X64_PREFIX = @@PREFIX@@/bin/x86_64-elf- +DEFINE COREBOOT_ARM_PREFIX = @@PREFIX@@/bin/arm-eabi- +DEFINE COREBOOT_AARCH64_PREFIX = @@PREFIX@@/bin/arch64-elf- DEFINE COREBOOT_IA32_CC_FLAGS = DEF(GCC5_IA32_CC_FLAGS) DEFINE COREBOOT_X64_CC_FLAGS = DEF(GCC5_X64_CC_FLAGS) |