diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2006-12-30 06:17:21 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2006-12-30 06:17:21 +0000 |
| commit | 911f0cdf180a714314d968113844a32d94581829 (patch) | |
| tree | 8a4da6ee577fb6ae305e44c3e11b12a0e2a329ad /setup.py | |
| parent | 5a01f848cab3acecf7be93848d935537b8dcfb0e (diff) | |
Fixed #3203 -- Fixed setup.py bdist_wininst. Thanks for the patch, ymasuda
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4264 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -1,6 +1,7 @@ from distutils.core import setup from distutils.command.install import INSTALL_SCHEMES import os +import sys # Tell distutils to put the data_files in platform-specific installation # locations. See here for an explanation: @@ -23,7 +24,13 @@ for dirpath, dirnames, filenames in os.walk(django_dir): package = dirpath[len_root_dir:].lstrip('/').replace('/', '.') packages.append(package) else: - data_files.append((dirpath, [os.path.join(dirpath, f) for f in filenames])) + data_files.append([dirpath, [os.path.join(dirpath, f) for f in filenames]]) + +# Small hack for working with bdist_wininst. +# See http://mail.python.org/pipermail/distutils-sig/2004-August/004134.html +if sys.argv[1] == 'bdist_wininst': + for file_info in data_files: + file_info[0] = '/PURELIB/%s' % file_info[0] # Dynamically calculate the version based on django.VERSION. version = "%d.%d-%s" % (__import__('django').VERSION) |
