diff options
author | Leif Lindholm <leif.lindholm@linaro.org> | 2019-07-05 11:25:31 +0100 |
---|---|---|
committer | Leif Lindholm <leif.lindholm@linaro.org> | 2019-07-05 14:58:43 +0100 |
commit | d031fc07eb83c9d13bff3ebac25da458d5a47917 (patch) | |
tree | 08c701691e272f7025b6e870d5b85c7a82779429 /BaseTools/Source/C | |
parent | 0a487ef96bd6d2e0ac23323adab86f9949068ed6 (diff) | |
download | edk2-d031fc07eb83c9d13bff3ebac25da458d5a47917.zip edk2-d031fc07eb83c9d13bff3ebac25da458d5a47917.tar.gz edk2-d031fc07eb83c9d13bff3ebac25da458d5a47917.tar.bz2 |
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 <leif.lindholm@linaro.org>
Reviewed-by: Liming Gao <liming.gao@intel.com>
Diffstat (limited to 'BaseTools/Source/C')
-rw-r--r-- | BaseTools/Source/C/FCE/GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BaseTools/Source/C/FCE/GNUmakefile b/BaseTools/Source/C/FCE/GNUmakefile index 3e1b6a8..7a7e1ef 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
|