diff options
author | Liming Gao <liming.gao@intel.com> | 2018-10-16 23:08:46 +0800 |
---|---|---|
committer | Liming Gao <liming.gao@intel.com> | 2018-10-19 08:21:47 +0800 |
commit | 7b500c606ad101fad52327318af37889048cd45e (patch) | |
tree | c2661cbf217ea7edf97f11b1536cfbec92aa85ab /BaseTools/Makefile | |
parent | 1c3399d73dda6acded6d1f680b43306f1eb84ebe (diff) | |
download | edk2-7b500c606ad101fad52327318af37889048cd45e.tar.gz |
BaseTools: Remove the step to freeze python tool
https://bugzilla.tianocore.org/show_bug.cgi?id=1257
Binary python tool is not supported anymore. So, the freeze python tool
step is not required.
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Liming Gao <liming.gao@intel.com>
Cc: Yonghong Zhu <yonghong.zhu@intel.com>
Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
Diffstat (limited to 'BaseTools/Makefile')
-rw-r--r-- | BaseTools/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/BaseTools/Makefile b/BaseTools/Makefile index b98cd85cb7..e6932c77c0 100644 --- a/BaseTools/Makefile +++ b/BaseTools/Makefile @@ -17,13 +17,11 @@ SUBDIRS = $(BASE_TOOLS_PATH)\Source\C $(BASE_TOOLS_PATH)\Source\Python
-all: c python
+all: c
c :
@$(PYTHON_HOME)\python.exe $(BASE_TOOLS_PATH)\Source\C\Makefiles\NmakeSubdirs.py all $(BASE_TOOLS_PATH)\Source\C
-python:
- @$(PYTHON_HOME)\python.exe $(BASE_TOOLS_PATH)\Source\C\Makefiles\NmakeSubdirs.py all $(BASE_TOOLS_PATH)\Source\Python
subdirs: $(SUBDIRS)
@$(PYTHON_HOME)\python.exe $(BASE_TOOLS_PATH)\Source\C\Makefiles\NmakeSubdirs.py all $**
|