aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Müller <schnitzeltony@gmail.com>2019-01-30 22:35:09 +0100
committerArmin Kuster <akuster808@gmail.com>2019-02-04 22:07:30 -0800
commitafe79a501d881887d053d55c5c4700ea0e502c02 (patch)
tree4c172dc3ab839ec2553ffcf26850f21af4c5bb57
parent0814df2e9179b71b5f5c99b962aca35ede1f242f (diff)
downloadmeta-openembedded-contrib-afe79a501d881887d053d55c5c4700ea0e502c02.tar.gz
libgit2: Fix install for multilib
| ERROR: libgit2-0.27.4-r0 do_package: QA Issue: libgit2: Files/directories were installed but not shipped in any package: | /usr/lib/libgit2.so.0.27.5 | /usr/lib/libgit2.so.27 | /usr/lib/libgit2.so | /usr/lib/pkgconfig | /usr/lib/pkgconfig/libgit2.pc | Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install. + reduce 8 spaces by 4 Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r--meta-oe/recipes-support/libgit2/libgit2_0.27.4.bb11
1 files changed, 6 insertions, 5 deletions
diff --git a/meta-oe/recipes-support/libgit2/libgit2_0.27.4.bb b/meta-oe/recipes-support/libgit2/libgit2_0.27.4.bb
index e7f7688922..816ae5e2ed 100644
--- a/meta-oe/recipes-support/libgit2/libgit2_0.27.4.bb
+++ b/meta-oe/recipes-support/libgit2/libgit2_0.27.4.bb
@@ -14,11 +14,12 @@ S = "${WORKDIR}/git"
inherit cmake
EXTRA_OECMAKE = "\
- -DTHREADSAFE=ON \
- -DBUILD_CLAR=OFF \
- -DSHA1_TYPE="builtin" \
- -DCMAKE_BUILD_TYPE=RelWithDebInfo \
- -DBUILD_EXAMPLES=OFF \
+ -DTHREADSAFE=ON \
+ -DBUILD_CLAR=OFF \
+ -DSHA1_TYPE="builtin" \
+ -DCMAKE_BUILD_TYPE=RelWithDebInfo \
+ -DBUILD_EXAMPLES=OFF \
+ -DLIB_INSTALL_DIR=${libdir} \
"
BBCLASSEXTEND = "native"