From: Martin v. Löwis Date: Mon, 7 Apr 2008 14:54:16 +0000 (+0000) Subject: Make private_crt feature object a global variable. X-Git-Tag: v2.6a3~250 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e411f8955f18504e6f2d3fee0f97819049ddd642;p=thirdparty%2FPython%2Fcpython.git Make private_crt feature object a global variable. --- diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index 7414564e4d16..e41bf00d0aae 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -794,7 +794,7 @@ def add_features(db): # (i.e. additional Python libraries) need to follow the parent feature. # Features that have no advertisement trigger (e.g. the test suite) # must not support advertisement - global default_feature, tcltk, htmlfiles, tools, testsuite, ext_feature + global default_feature, tcltk, htmlfiles, tools, testsuite, ext_feature, private_crt default_feature = Feature(db, "DefaultFeature", "Python", "Python Interpreter and Libraries", 1, directory = "TARGETDIR")