[Distutils] distutils + CVS Python prob. -- or is my installation broken?

Andrew Kuchling akuchlin@mems-exchange.org
Mon Feb 11 11:30:01 2002


On Mon, Feb 11, 2002 at 04:47:38PM +0100, Just van Rossum wrote:
>So distutils is looking for /usr/local/lib/python2.3, whereas the lib is still
>in /usr/local/lib/python2.2. Is my install broken or is distutils confused?

The configure.in has an outdated version number.  Does the patch below
help?  (I'll go ahead and check it in no matter what.)

--amk

Index: configure.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure.in,v
retrieving revision 1.289
diff -u -r1.289 configure.in
--- configure.in	1 Jan 2002 18:41:32 -0000	1.289
+++ configure.in	11 Feb 2002 16:25:10 -0000
@@ -6,7 +6,7 @@
 
 # Set VERSION so we only need to edit in one place (i.e., here)
 AC_SUBST(VERSION)
-VERSION=2.2
+VERSION=2.3
 
 # Arguments passed to configure.
 AC_SUBST(CONFIG_ARGS)