summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLoïc Minier <lool@dooz.org>2009-06-29 10:31:59 +0200
committerLoïc Minier <lool@dooz.org>2009-06-29 10:31:59 +0200
commit2d5c6093e0d77576da867c2e5e6f42b6b75de37b (patch)
tree6abaee340114f1703308eba89eda872e46719924
parenta0f7295b7cd2d64bfc1e0b7c52fa39b1132f1fe5 (diff)
downloadpython-apt-2d5c6093e0d77576da867c2e5e6f42b6b75de37b.tar.gz
Revert addition of gcc and gcc_s to python-apt libs as the toolchain has
been fixed; LP: #375334.
-rw-r--r--debian/changelog7
-rwxr-xr-xsetup.py2
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 316c83bc..da376bc1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+python-apt (0.7.10.4ubuntu2) UNRELEASED; urgency=low
+
+ * Revert addition of gcc and gcc_s to python-apt libs as the toolchain has
+ been fixed; LP: #375334.
+
+ -- Loïc Minier <loic.minier@ubuntu.com> Mon, 29 Jun 2009 10:30:58 +0200
+
python-apt (0.7.10.4ubuntu1) karmic; urgency=low
[ Michael Vogt ]
diff --git a/setup.py b/setup.py
index 4683554c..9ed21378 100755
--- a/setup.py
+++ b/setup.py
@@ -13,7 +13,7 @@ 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())
-apt_pkg = Extension("apt_pkg", files, libraries=["apt-pkg", "gcc", "gcc_s"])
+apt_pkg = Extension("apt_pkg", files, libraries=["apt-pkg"])
# The apt_inst module
files = map(lambda source: "python/"+source,