From: Michael W. Hudson Date: Tue, 8 Oct 2002 14:59:43 +0000 (+0000) Subject: Put a do-nothing set_python_build() back. X-Git-Tag: v2.2.2~46 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0ca64f5243206144fdb21715852e84174a1f8607;p=thirdparty%2FPython%2Fcpython.git Put a do-nothing set_python_build() back. --- diff --git a/Lib/distutils/sysconfig.py b/Lib/distutils/sysconfig.py index 52967e04f35b..fa4a3029488d 100644 --- a/Lib/distutils/sysconfig.py +++ b/Lib/distutils/sysconfig.py @@ -38,6 +38,11 @@ else: "Lib", "os.py")) del argv0_path, landmark +# set_python_build() was present in 2.2 and 2.2.1; it's not needed +# any more, but so 3rd party build scripts don't break, we leave +# a do-nothing version: +def set_python_build(): + pass def get_python_inc(plat_specific=0, prefix=None): """Return the directory containing installed Python header files.