diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-06-13 17:38:11 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-06-13 17:38:11 (GMT) |
commit | 340043ea7916f4ada4e849cfb3da6d7cad621f5d (patch) | |
tree | 0b9663874e44e6a5a55dbe69a7839dc14451d147 | |
parent | c18fde5d82981cc1f6e18ccdc3ab5a4d333856fb (diff) | |
download | cpython-340043ea7916f4ada4e849cfb3da6d7cad621f5d.zip cpython-340043ea7916f4ada4e849cfb3da6d7cad621f5d.tar.gz cpython-340043ea7916f4ada4e849cfb3da6d7cad621f5d.tar.bz2 |
Munge depends files to have absolute paths.
Look in both moddirlist and incdirlist, since a .h could be in either.
-rw-r--r-- | setup.py | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -105,6 +105,8 @@ class PyBuildExt(build_ext): moddirlist.append(macmoddir) incdirlist.append('./Mac/Include') + alldirlist = moddirlist + incdirlist + # Fix up the paths for scripts, too self.distribution.scripts = [os.path.join(srcdir, filename) for filename in self.distribution.scripts] @@ -112,6 +114,9 @@ class PyBuildExt(build_ext): for ext in self.extensions[:]: ext.sources = [ find_module_file(filename, moddirlist) for filename in ext.sources ] + if ext.depends is not None: + ext.depends = [find_module_file(filename, alldirlist) + for filename in ext.depends] ext.include_dirs.append( '.' ) # to get config.h for incdir in incdirlist: ext.include_dirs.append( os.path.join(srcdir, incdir) ) @@ -386,7 +391,7 @@ class PyBuildExt(build_ext): # socket(2) exts.append( Extension('_socket', ['socketmodule.c'], - depends = ['Modules/socketmodule.h']) ) + depends = ['socketmodule.h']) ) # Detect SSL support for the socket module (via _ssl) ssl_incs = find_file('openssl/ssl.h', inc_dirs, ['/usr/local/ssl/include', @@ -404,7 +409,7 @@ class PyBuildExt(build_ext): include_dirs = ssl_incs, library_dirs = ssl_libs, libraries = ['ssl', 'crypto'], - depends = ['Modules/socketmodule.h']), ) + depends = ['socketmodule.h']), ) # Modules that provide persistent dictionary-like semantics. You will # probably want to arrange for at least one of them to be available on |