summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2009-11-19 21:50:02 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2009-11-19 21:50:02 +0000
commit0ad4a95607c2808fcc54237fde82b44436cac6bc (patch)
tree2adb139862b7daed2d38cb9d557a6fe29513d1dd
parent0037679ca91e4ae42b0162f7e354849d3888ff1d (diff)
downloadpoky-0ad4a95607c2808fcc54237fde82b44436cac6bc.tar.gz
genext2fs: The makefile is broken, just do the correct thing ourselves
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
-rw-r--r--meta/packages/genext2fs/genext2fs_1.3.bb7
1 files changed, 5 insertions, 2 deletions
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 @@
1require genext2fs.inc 1require genext2fs.inc
2 2
3PR = "r3" 3PR = "r4"
4 4
5SRC_URI = "${DEBIAN_MIRROR}/main/g/genext2fs/genext2fs_${PV}.orig.tar.gz \ 5SRC_URI = "${DEBIAN_MIRROR}/main/g/genext2fs/genext2fs_${PV}.orig.tar.gz \
6 file://misc.patch;patch=1" 6 file://misc.patch;patch=1"
@@ -12,7 +12,10 @@ do_compile () {
12 12
13NATIVE_INSTALL_WORKS = "1" 13NATIVE_INSTALL_WORKS = "1"
14do_install () { 14do_install () {
15 oe_runmake 'DESTDIR=${D}' install 15 install -d ${D}${bindir}/
16 install -m 755 genext2fs ${D}${bindir}/
17 install -d ${D}${mandir}/man8/
18 install -m 644 genext2fs.8 ${D}${mandir}/man8/
16} 19}
17 20
18BBCLASSEXTEND = "native" 21BBCLASSEXTEND = "native"