]> git.ipfire.org Git - people/ms/ipfire-3.x.git/blame - pakfire/patches/0013-Fix-linking-to-libsolvext.patch
pakfire: Rebase on latest development status.
[people/ms/ipfire-3.x.git] / pakfire / patches / 0013-Fix-linking-to-libsolvext.patch
CommitLineData
d72d822f
MT
1From bc17ee1a8d7ea87e7e3bb137c86519209eb24c00 Mon Sep 17 00:00:00 2001
2From: Michael Tremer <michael.tremer@ipfire.org>
3Date: Sat, 30 Jun 2012 12:18:52 +0200
4Subject: [PATCH 13/16] Fix linking to libsolvext.
5
6This is pulled in by libsolv itself. Although this is not good
7style, it works more reliable without patching libsolvext which
8is missing symbols from libexpat, libz and more.
9---
10 python/src/Makefile | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13diff --git a/python/src/Makefile b/python/src/Makefile
14index 583cc16..2741fa2 100644
15--- a/python/src/Makefile
16+++ b/python/src/Makefile
17@@ -7,7 +7,7 @@ MODULE_LZMA = _lzma.so
18 MODULES = $(MODULE_PAKFIRE) $(MODULE_LZMA)
19
20 # Libs that are to be linked into the module.
21-MODULE_PAKFIRE_LIBS = -lcap -lpython$(PYTHON_VERSION) -lsolv -lsolvext
22+MODULE_PAKFIRE_LIBS = -lcap -lpython$(PYTHON_VERSION) -lsolv
23 MODULE_LZMA_LIBS = -llzma
24
25 SOURCES_LZMA = _lzmamodule.c
26--
271.7.10.4
28