diff options
| author | Sebastian Heinlein <sebi@sebi-laptop> | 2006-11-25 14:42:30 +0100 |
|---|---|---|
| committer | Sebastian Heinlein <sebi@sebi-laptop> | 2006-11-25 14:42:30 +0100 |
| commit | e807b5ae883a29c0ce9439af79e1ae7c16053790 (patch) | |
| tree | 70f11d745f89806ac81163fd52ee1131371f658b | |
| parent | ba9158ba221f522239f9d4f63843fea3d55ff7ed (diff) | |
| download | python-apt-e807b5ae883a29c0ce9439af79e1ae7c16053790.tar.gz | |
* more work on integrating distutils-extra
| -rwxr-xr-x | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ #!/usr/bin/env python - from distutils.core import setup import glob, os, commands, sys +from DistUtilsExtra.distutils_extra import build_extra, build_l10n setup( name = 'python-aptsources', @@ -12,6 +12,6 @@ setup( glob.glob('build/templates/*.info'))], license = 'GNU GPL', platforms = 'posix', - cmdclass = { "build" : build_plus, + cmdclass = { "build" : build_extra, "build_l10n" : build_l10n } ) |
