Commit 87b5c78b authored by Stefan Behnel's avatar Stefan Behnel

trial fix for Py2.3 build

parent 01fb29ca
......@@ -39,9 +39,11 @@ if sys.version_info[0] >= 3:
if sys.version_info < (2,4):
install_base_dir = get_python_lib(prefix='')
import glob
setup_args['data_files'] = [
(os.path.dirname(pattern), [ f for f in glob.glob(pattern) ])
(os.path.dirname(os.path.join(install_base_dir, pattern)),
[ f for f in glob.glob(pattern) ])
for pattern in ['Cython/Includes/*.pxd',
'Cython/Plex/*.pxd',
'Cython/Compiler/*.pxd',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment