From d031fc07eb83c9d13bff3ebac25da458d5a47917 Mon Sep 17 00:00:00 2001 From: Leif Lindholm Date: Fri, 5 Jul 2019 11:25:31 +0100 Subject: [PATCH] BaseTools: fix FCE build when edksetup not executed Commit 3c59d94637ad ("BaseTools/FCE: Add a tool FCE") added a new tool that is always built. Pre-existing tools locate the makefile includes with relative paths, but FCE uses EDK_TOOLS_PATH, adding a new dependency on having sourced edksetup.sh before building BaseTools. Change FCE GNUmakefile to match other tools. Signed-off-by: Leif Lindholm Reviewed-by: Liming Gao --- BaseTools/Source/C/FCE/GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaseTools/Source/C/FCE/GNUmakefile b/BaseTools/Source/C/FCE/GNUmakefile index 3e1b6a85e2..7a7e1ef4b8 100644 --- a/BaseTools/Source/C/FCE/GNUmakefile +++ b/BaseTools/Source/C/FCE/GNUmakefile @@ -42,7 +42,7 @@ endif export ARCH export HOST_ARCH=$(ARCH) -MAKEROOT ?= $(EDK_TOOLS_PATH)/Source/C +MAKEROOT ?= .. APPNAME = FCE -- 2.39.5