From 165cb472e68a7111b572ed3296b4a72320711c80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Tue, 29 Jan 2019 14:13:03 +0100 Subject: [PATCH] lmdb: cleanup and fix multilib install MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Andreas Müller --- recipes-support/lmdb/lmdb_0.9.21.bb | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/recipes-support/lmdb/lmdb_0.9.21.bb b/recipes-support/lmdb/lmdb_0.9.21.bb index bfb73b36..9ac1128a 100644 --- a/recipes-support/lmdb/lmdb_0.9.21.bb +++ b/recipes-support/lmdb/lmdb_0.9.21.bb @@ -10,20 +10,12 @@ SRC_URI = " \ SRCREV = "60d500206a108b2c64ca7e36b0113b2cd3711b98" S = "${WORKDIR}/git/libraries/liblmdb" -inherit autotools-brokensep - - do_compile() { oe_runmake "CC=${CC}" } do_install() { - install -d ${D}${bindir} - install -d ${D}${libdir} - install -d ${D}${includedir} - install -d ${D}${mandir} - sed -i 's:\$(prefix)/man:${mandir}:' Makefile - oe_runmake DESTDIR=${D} prefix=${prefix} libprefix=${libdir} manprefix=${mandir} install + oe_runmake DESTDIR=${D} prefix=${prefix} libdir=${libdir} mandir=${mandir} install chown -R root:root ${D}${bindir} chown -R root:root ${D}${libdir} }