diff options
author | Michael Thomas <malinka@entropy-development.com> | 2016-01-11 07:42:03 +0000 |
---|---|---|
committer | Hao Wu <hao.a.wu@intel.com> | 2016-02-24 15:29:35 +0800 |
commit | 425af91dc6963a04d87bbeea3b59ea42527bbdf5 (patch) | |
tree | 5c0d6423dbdad0e5d40a5ae05edf269375fcc66d /BaseTools | |
parent | 67031ab4e29e8a53b3a7a5180f86c902c5832e40 (diff) | |
download | edk2-platforms-425af91dc6963a04d87bbeea3b59ea42527bbdf5.tar.xz |
BaseTools/VfrCompile: honor CC if it is set
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Michael Thomas <malinka@entropy-development.com>
Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@19636 6f19259b-4bc3-4df7-8a09-765794883524
(cherry picked from commit 819a2394f17f6e4e97893481e4acb95401e7b380)
Diffstat (limited to 'BaseTools')
-rw-r--r-- | BaseTools/Source/C/VfrCompile/Pccts/dlg/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BaseTools/Source/C/VfrCompile/Pccts/dlg/makefile b/BaseTools/Source/C/VfrCompile/Pccts/dlg/makefile index 406725d195..dfcf3eebeb 100644 --- a/BaseTools/Source/C/VfrCompile/Pccts/dlg/makefile +++ b/BaseTools/Source/C/VfrCompile/Pccts/dlg/makefile @@ -114,7 +114,7 @@ PCCTS_H=../h #
# UNIX
#
-CC=cc
+CC?=cc
COPT=-O
ANTLR=${BIN_DIR}/antlr
DLG=${BIN_DIR}/dlg
|