diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-11-19 21:50:02 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-11-19 21:50:02 +0000 |
commit | 0ad4a95607c2808fcc54237fde82b44436cac6bc (patch) | |
tree | 2adb139862b7daed2d38cb9d557a6fe29513d1dd | |
parent | 0037679ca91e4ae42b0162f7e354849d3888ff1d (diff) | |
download | poky-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.bb | 7 |
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 @@ | |||
1 | require genext2fs.inc | 1 | require genext2fs.inc |
2 | 2 | ||
3 | PR = "r3" | 3 | PR = "r4" |
4 | 4 | ||
5 | SRC_URI = "${DEBIAN_MIRROR}/main/g/genext2fs/genext2fs_${PV}.orig.tar.gz \ | 5 | SRC_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 | ||
13 | NATIVE_INSTALL_WORKS = "1" | 13 | NATIVE_INSTALL_WORKS = "1" |
14 | do_install () { | 14 | do_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 | ||
18 | BBCLASSEXTEND = "native" | 21 | BBCLASSEXTEND = "native" |