From: Andreas Oberritter Date: Mon, 25 Oct 2010 03:01:13 +0000 (+0000) Subject: lua5.1: install lua5.1.pc properly X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=48838f0fca6b00767115dd13bce2537f035fd3ba;p=openembedded.git lua5.1: install lua5.1.pc properly Signed-off-by: Andreas Oberritter Signed-off-by: Khem Raj --- diff --git a/recipes/lua/lua5.1_5.1.4.bb b/recipes/lua/lua5.1_5.1.4.bb index e3d56fd959..814f83e47e 100644 --- a/recipes/lua/lua5.1_5.1.4.bb +++ b/recipes/lua/lua5.1_5.1.4.bb @@ -4,7 +4,7 @@ LICENSE = "MIT" HOMEPAGE = "http://www.lua.org/" DEPENDS += "readline" -PR = "r8" +PR = "r9" SRC_URI = "http://www.lua.org/ftp/lua-${PV}.tar.gz \ file://bitwise_operators.patch \ file://lua5.1.pc \ @@ -25,7 +25,6 @@ do_configure_prepend() { } do_compile () { - cp ${WORKDIR}/lua5.1.pc ${S}/ oe_runmake linux } @@ -37,6 +36,8 @@ do_install () { 'INSTALL_MAN=${D}${mandir}/man1' \ 'INSTALL_SHARE=${D}${datadir}/lua' \ install + install -d ${D}${libdir}/pkgconfig + install -m 0644 ${WORKDIR}/lua5.1.pc ${D}${libdir}/pkgconfig/lua5.1.pc } NATIVE_INSTALL_WORKS = 1 BBCLASSEXTEND = "native"