From: Richard Purdie Date: Thu, 19 Nov 2009 21:50:02 +0000 (+0000) Subject: genext2fs: The makefile is broken, just do the correct thing ourselves X-Git-Tag: 2011-1~6667 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=0ad4a95607c2808fcc54237fde82b44436cac6bc;p=openembedded-core.git genext2fs: The makefile is broken, just do the correct thing ourselves Signed-off-by: Richard Purdie --- diff --git a/meta/packages/genext2fs/genext2fs_1.3.bb b/meta/packages/genext2fs/genext2fs_1.3.bb index be67f5b3c7..fcffb0af47 100644 --- a/meta/packages/genext2fs/genext2fs_1.3.bb +++ b/meta/packages/genext2fs/genext2fs_1.3.bb @@ -1,6 +1,6 @@ require genext2fs.inc -PR = "r3" +PR = "r4" SRC_URI = "${DEBIAN_MIRROR}/main/g/genext2fs/genext2fs_${PV}.orig.tar.gz \ file://misc.patch;patch=1" @@ -12,7 +12,10 @@ do_compile () { NATIVE_INSTALL_WORKS = "1" do_install () { - oe_runmake 'DESTDIR=${D}' install + install -d ${D}${bindir}/ + install -m 755 genext2fs ${D}${bindir}/ + install -d ${D}${mandir}/man8/ + install -m 644 genext2fs.8 ${D}${mandir}/man8/ } BBCLASSEXTEND = "native"