From a9f6e0a4dc6d3f4dec53bb2a11b1c0ecee455076 Mon Sep 17 00:00:00 2001 From: Liming Gao Date: Tue, 28 Nov 2017 11:18:50 +0800 Subject: BaseTools: Replace ARCH with HOST_ARCH in C Makefile to avoid conflict https://bugzilla.tianocore.org/show_bug.cgi?id=793 ARCH is too generic. It may cause confuse of target arch or host arch. To be clarified, replace it with HOST_ARCH in BaseTools C Makefile. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Liming Gao Reviewed-by: Yonghong Zhu --- BaseTools/Source/C/EfiRom/GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'BaseTools/Source/C/EfiRom') diff --git a/BaseTools/Source/C/EfiRom/GNUmakefile b/BaseTools/Source/C/EfiRom/GNUmakefile index 433c126..a13111c 100644 --- a/BaseTools/Source/C/EfiRom/GNUmakefile +++ b/BaseTools/Source/C/EfiRom/GNUmakefile @@ -10,7 +10,7 @@ # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. # -ARCH ?= IA32 +HOST_ARCH ?= IA32 MAKEROOT ?= .. APPNAME = EfiRom -- cgit v1.1