[Patches] [ python-Patches-405016 ] small setup.py patch for VPATH build
nobody
nobody@sourceforge.net
Wed, 28 Feb 2001 15:13:15 -0800
Patches #405016, was updated on 2001-02-28 15:09
You can respond by visiting:
http://sourceforge.net/tracker/?func=detail&atid=305470&aid=405016&group_id=5470
Category: Build
Group: None
Status: Open
Priority: 5
Submitted By: Markus F.X.J. Oberhumer
Assigned to: Nobody/Anonymous
Summary: small setup.py patch for VPATH build
Initial Comment:
This patch against the current CVS prepends `srcdir' to
the `scripts' variable.
----------------------------------------------------------------------
Comment By: Markus F.X.J. Oberhumer
Date: 2001-02-28 15:13
Message:
Logged In: YES
user_id=12151
Index: dist/src/setup.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/setup.py,v
retrieving revision 1.33
diff -r1.33 setup.py
597a598
> (srcdir,) = sysconfig.get_config_vars('srcdir')
606c607
< scripts = ['Tools/scripts/pydoc']
---
> scripts = [os.path.join(srcdir,
'Tools/scripts/pydoc')]
----------------------------------------------------------------------
Comment By: Markus F.X.J. Oberhumer
Date: 2001-02-28 15:11
Message:
Logged In: YES
user_id=12151
(the new sourceforge code is confusing me...)
----------------------------------------------------------------------
You can respond by visiting:
http://sourceforge.net/tracker/?func=detail&atid=305470&aid=405016&group_id=5470