diff options
author | Liming Gao <liming.gao@intel.com> | 2017-11-28 11:18:50 +0800 |
---|---|---|
committer | Liming Gao <liming.gao@intel.com> | 2017-11-30 13:06:44 +0800 |
commit | a9f6e0a4dc6d3f4dec53bb2a11b1c0ecee455076 (patch) | |
tree | bef4eec80df71f277fbd37d19e95468728e6e454 /BaseTools/Source/C/Makefile | |
parent | 43e12eeac8b125165b8a93c3501925a8893544ef (diff) | |
download | edk2-a9f6e0a4dc6d3f4dec53bb2a11b1c0ecee455076.zip edk2-a9f6e0a4dc6d3f4dec53bb2a11b1c0ecee455076.tar.gz edk2-a9f6e0a4dc6d3f4dec53bb2a11b1c0ecee455076.tar.bz2 |
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 <liming.gao@intel.com>
Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
Diffstat (limited to 'BaseTools/Source/C/Makefile')
-rw-r--r-- | BaseTools/Source/C/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BaseTools/Source/C/Makefile b/BaseTools/Source/C/Makefile index 77d3b97..50be773 100644 --- a/BaseTools/Source/C/Makefile +++ b/BaseTools/Source/C/Makefile @@ -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
!INCLUDE Makefiles\ms.common
|