|
From: <xf...@us...> - 2012-07-06 08:52:22
|
Revision: 2546
http://edk2-buildtools.svn.sourceforge.net/edk2-buildtools/?rev=2546&view=rev
Author: xfzyr
Date: 2012-07-06 08:52:13 +0000 (Fri, 06 Jul 2012)
Log Message:
-----------
Sync BaseTool Trunk with BaseTool OC to support Python 2.7.2 and cx-freeze 4.2.3.
Signed-off-by: Yurui Zeng <lim...@in...>
Reviewed-by: Liming Gao <yur...@in...>
Modified Paths:
--------------
trunk/BaseTools/Source/Python/Makefile
Modified: trunk/BaseTools/Source/Python/Makefile
===================================================================
--- trunk/BaseTools/Source/Python/Makefile 2012-07-03 06:44:40 UTC (rev 2545)
+++ trunk/BaseTools/Source/Python/Makefile 2012-07-06 08:52:13 UTC (rev 2546)
@@ -15,7 +15,13 @@
!ERROR PYTHON_FREEZER_PATH must be defined!
!ENDIF
+!IF EXIST ($(PYTHON_FREEZER_PATH)\cxfreeze)
+# Using cx_Freeze 4.2.3 with Python 2.7.2
+FREEZE=$(PYTHON_FREEZER_PATH)\cxfreeze
+!ELSE
+# Using cx_Freeze 3.0.3 with Python 2.5.4
FREEZE=$(PYTHON_FREEZER_PATH)\FreezePython.exe
+!ENDIF
MODULES=encodings.cp437,encodings.gbk,encodings.utf_16,encodings.utf_8,encodings.utf_16_le,encodings.latin_1,encodings.ascii
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|