summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/zypper/zypper_git.bb
diff options
context:
space:
mode:
authorNitin A Kamble <nitin.a.kamble@intel.com>2011-01-19 09:19:27 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-01-20 21:37:05 +0000
commit746173daad9fbd46dc7917b1423855d1997782c1 (patch)
tree9ee3bc41b5c4dc50c7ea8ed9df5d636a261f8cd5 /meta/recipes-extended/zypper/zypper_git.bb
parentcff67292a2ce9a7866bf14653b5a81d501bfb64b (diff)
downloadpoky-746173daad9fbd46dc7917b1423855d1997782c1.tar.gz
zypper: fix build issue with gcc dso linking change
All the libraries needs to be specified explicitely with the new gcc dso linking change patch. This was causing build errors for this recipe. Specifying the libpthread library explicitely for linking to work without errors. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Diffstat (limited to 'meta/recipes-extended/zypper/zypper_git.bb')
-rw-r--r--meta/recipes-extended/zypper/zypper_git.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-extended/zypper/zypper_git.bb b/meta/recipes-extended/zypper/zypper_git.bb
index c8895e5806..b9e2e85943 100644
--- a/meta/recipes-extended/zypper/zypper_git.bb
+++ b/meta/recipes-extended/zypper/zypper_git.bb
@@ -6,13 +6,13 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=3201406e350b39e05a82e28b5020f413"
6 6
7DEPENDS = "libzypp augeas" 7DEPENDS = "libzypp augeas"
8RRECOMMENDS_${PN} = "procps" 8RRECOMMENDS_${PN} = "procps"
9PR = "r2" 9PR = "r3"
10 10
11inherit cmake 11inherit cmake
12 12
13SRC_URI = "git://gitorious.org/opensuse/zypper.git;protocol=git \ 13SRC_URI = "git://gitorious.org/opensuse/zypper.git;protocol=git \
14 file://cmake.patch \ 14 file://cmake.patch \
15 " 15 file://dso_linking_change_build_fix.patch "
16S = "${WORKDIR}/git" 16S = "${WORKDIR}/git"
17 17
18PV = "1.4.7-git${SRCPV}" 18PV = "1.4.7-git${SRCPV}"