summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command
diff options
context:
space:
mode:
authorJust van Rossum <just@letterror.com>2001-07-29 21:39:18 (GMT)
committerJust van Rossum <just@letterror.com>2001-07-29 21:39:18 (GMT)
commit8d8e7a3256c7c3b84cee8d1344c2be8bfb47bab8 (patch)
treee2234e95c0ecfc7c3691a842192e3193f6c7ba83 /Lib/distutils/command
parent8e02fb15e6adbe3afaeca08fdd8d4f2da030392c (diff)
downloadcpython-8d8e7a3256c7c3b84cee8d1344c2be8bfb47bab8.zip
cpython-8d8e7a3256c7c3b84cee8d1344c2be8bfb47bab8.tar.gz
cpython-8d8e7a3256c7c3b84cee8d1344c2be8bfb47bab8.tar.bz2
Do convert_path() on script paths (now PyXML builds out of the box
under MacOS.)
Diffstat (limited to 'Lib/distutils/command')
-rw-r--r--Lib/distutils/command/build_scripts.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/distutils/command/build_scripts.py b/Lib/distutils/command/build_scripts.py
index 653b8d8..611767e 100644
--- a/Lib/distutils/command/build_scripts.py
+++ b/Lib/distutils/command/build_scripts.py
@@ -9,6 +9,7 @@ __revision__ = "$Id$"
import sys, os, re
from distutils.core import Command
from distutils.dep_util import newer
+from distutils.util import convert_path
# check if Python is called on the first line with this expression
first_line_re = re.compile(r'^#!.*python(\s+.*)?')
@@ -54,6 +55,7 @@ class build_scripts (Command):
self.mkpath(self.build_dir)
for script in self.scripts:
adjust = 0
+ script = convert_path(script)
outfile = os.path.join(self.build_dir, os.path.basename(script))
if not self.force and not newer(script, outfile):