From ec18363cb15f03386cdeb13f02de23042d3638f2 Mon Sep 17 00:00:00 2001 From: tsarna Date: Wed, 14 Apr 1999 05:00:11 +0000 Subject: Deal with our unusually long compiler version string. --- lang/python/patches/patch-aa | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lang/python/patches/patch-aa diff --git a/lang/python/patches/patch-aa b/lang/python/patches/patch-aa new file mode 100644 index 00000000000..b5981df0e39 --- /dev/null +++ b/lang/python/patches/patch-aa @@ -0,0 +1,11 @@ +--- Python/getversion.c.orig Tue Apr 13 23:58:15 1999 ++++ Python/getversion.c Tue Apr 13 23:58:22 1999 +@@ -39,7 +39,7 @@ + Py_GetVersion() + { + static char version[100]; +- sprintf(version, "%.10s (%.40s) %.40s", PY_VERSION, ++ sprintf(version, "%.10s (%.40s) %.50s", PY_VERSION, + Py_GetBuildInfo(), Py_GetCompiler()); + return version; + } -- cgit v1.2.3