diff options
author | drochner <drochner@pkgsrc.org> | 2002-11-27 18:38:18 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2002-11-27 18:38:18 +0000 |
commit | e79a3d99f812b4c78b58b8986693a9024404f214 (patch) | |
tree | 327980ac7fa2c27ad2976eba443bd2eab921ab8d /textproc | |
parent | d214224384cd6c4b9c6edf7a26773921f65918bd (diff) | |
download | pkgsrc-e79a3d99f812b4c78b58b8986693a9024404f214.tar.gz |
oops, forgot that
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/py-FourSuite/patches/patch-ac | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/textproc/py-FourSuite/patches/patch-ac b/textproc/py-FourSuite/patches/patch-ac new file mode 100644 index 00000000000..2c9f8f81905 --- /dev/null +++ b/textproc/py-FourSuite/patches/patch-ac @@ -0,0 +1,13 @@ +$NetBSD: patch-ac,v 1.1 2002/11/27 18:38:18 drochner Exp $ + +--- Ft/Lib/DistExt/__init__.py.orig Thu Aug 22 13:07:44 2002 ++++ Ft/Lib/DistExt/__init__.py Thu Aug 22 13:17:01 2002 +@@ -21,7 +21,7 @@ + Python to have. + """ + import sys +- sys_version = float(sys.version[:3]) ++ sys_version = float(sys.version[0] + "." + sys.version[2]) + # module, min_version + for name, version in [('pydoc', 2.1), ('inspect', 2.2)]: + if sys_version < version: |