summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorLoïc Minier <lool@dooz.org>2009-05-12 12:56:15 +0200
committerLoïc Minier <lool@dooz.org>2009-05-12 12:56:15 +0200
commitf1486fcb13acfea1bf95d34a8334d2b73002296e (patch)
tree0b2a5a83fcc06c564aacf4698d82537458ed0ec1 /setup.py
parent2c43ad2f4440571a1fadb6830f14d7a3f1ad2020 (diff)
parentb302598dfbd197fdf40d1b96c6f0155c735e7fbb (diff)
downloadpython-apt-f1486fcb13acfea1bf95d34a8334d2b73002296e.tar.gz
Merge from Michael Casadevall's branch
lp:~mcasadevall/python-apt/karmic-armel-workaround to work around an issue with the new toolchain: [ Michael Casadevall ] * setup.py: - Added gcc and gcc_s to work around gcc-4.4 issue on ARM and libstdc++ - This is a temporary workaround for Karmic Alpha 1. See bug #375334 for more details
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 9ed21378..4683554c 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"])
+apt_pkg = Extension("apt_pkg", files, libraries=["apt-pkg", "gcc", "gcc_s"])
# The apt_inst module
files = map(lambda source: "python/"+source,