diff options
| author | Julian Andres Klode <jak@debian.org> | 2009-06-25 18:31:00 +0200 |
|---|---|---|
| committer | Julian Andres Klode <jak@debian.org> | 2009-06-25 18:31:00 +0200 |
| commit | a4e69e11e544844034c3fbdc6789d5573f802117 (patch) | |
| tree | ab6b082018b3c721a4464e369cd865655e85e96b /setup.py | |
| parent | 128c1f00b2006c9c24638c11000e1864fc15bd04 (diff) | |
| download | python-apt-a4e69e11e544844034c3fbdc6789d5573f802117.tar.gz | |
python: Fix some build warnings.
Diffstat (limited to 'setup.py')
| -rwxr-xr-x | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -12,12 +12,12 @@ from DistUtilsExtra.command import build_extra, build_i18n # The apt_pkg module files = map(lambda source: "python/"+source, - parse_makefile("python/makefile")["APT_PKG_SRC"].split()) + sorted(parse_makefile("python/makefile")["APT_PKG_SRC"].split())) apt_pkg = Extension("apt_pkg", files, libraries=["apt-pkg"]) # The apt_inst module files = map(lambda source: "python/"+source, - parse_makefile("python/makefile")["APT_INST_SRC"].split()) + sorted(parse_makefile("python/makefile")["APT_INST_SRC"].split())) apt_inst = Extension("apt_inst", files, libraries=["apt-pkg", "apt-inst"]) # Replace the leading _ that is used in the templates for translation |
