summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2009-06-25 18:31:00 +0200
committerJulian Andres Klode <jak@debian.org>2009-06-25 18:31:00 +0200
commita4e69e11e544844034c3fbdc6789d5573f802117 (patch)
treeab6b082018b3c721a4464e369cd865655e85e96b /setup.py
parent128c1f00b2006c9c24638c11000e1864fc15bd04 (diff)
downloadpython-apt-a4e69e11e544844034c3fbdc6789d5573f802117.tar.gz
python: Fix some build warnings.
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 2afd0708..85f4c889 100755
--- a/setup.py
+++ b/setup.py
@@ -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