diff options
| author | Michael Vogt <michael.vogt@ubuntu.com> | 2007-07-02 18:37:30 +0200 |
|---|---|---|
| committer | Michael Vogt <michael.vogt@ubuntu.com> | 2007-07-02 18:37:30 +0200 |
| commit | e3791336f419ea14f3841814f37f4c8f00479588 (patch) | |
| tree | d7a43b7447d8fe6e8dc31de977197ec873a13666 /setup.py | |
| parent | be23d152022cb79b74f9d7c6a07567b4e53c57d2 (diff) | |
| download | python-apt-e3791336f419ea14f3841814f37f4c8f00479588.tar.gz | |
* debian/control:
- updated for python-distutils-extra (>= 1.9.0)
* debian/python-apt.install:
- fix i18n files
Diffstat (limited to 'setup.py')
| -rwxr-xr-x | setup.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -3,7 +3,7 @@ from distutils.core import setup, Extension from distutils.sysconfig import parse_makefile -from DistUtilsExtra.distutils_extra import build_extra, build_l10n +from DistUtilsExtra.command import * import glob, os, string # The apt_pkg module @@ -40,8 +40,8 @@ setup(name="python-apt", glob.glob('build/data/templates/*.info')), ('share/python-apt/templates', glob.glob('data/templates/*.mirrors'))], - cmdclass = { "build" : build_extra, - "build_l10n" : build_l10n }, + cmdclass = { "build" : build_extra.build_extra, + "build_i18n" : build_i18n.build_i18n }, license = 'GNU GPL', platforms = 'posix' ) |
