aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/fastjar
diff options
context:
space:
mode:
authorHenning Heinold <heinold@inf.fu-berlin.de>2009-10-19 23:46:09 +0200
committerHenning Heinold <heinold@inf.fu-berlin.de>2009-10-19 23:46:49 +0200
commit4a7de9b99e64d90f4e31020ca42b0b74bb4d1634 (patch)
treee07ff422e096e74ce6e85cb4decbf22301c073f5 /recipes/fastjar
parentf6111fa227f89052d6a43410de77b9e595af4492 (diff)
downloadopenembedded-4a7de9b99e64d90f4e31020ca42b0b74bb4d1634.tar.gz
fastjar: fix staging now for real
* bump INC_PR
Diffstat (limited to 'recipes/fastjar')
-rw-r--r--recipes/fastjar/fastjar-native.inc12
1 files changed, 6 insertions, 6 deletions
diff --git a/recipes/fastjar/fastjar-native.inc b/recipes/fastjar/fastjar-native.inc
index feed4b29e1..df4d260713 100644
--- a/recipes/fastjar/fastjar-native.inc
+++ b/recipes/fastjar/fastjar-native.inc
@@ -4,7 +4,7 @@ SECTION = "devel"
PRIORITY = "optional"
LICENSE = "GPL"
-INC_PR = "r1"
+INC_PR = "r2"
DEPENDS = "zlib-native"
@@ -14,15 +14,15 @@ S = "${WORKDIR}/fastjar-${PV}"
inherit autotools native
-EXTRA_OECONF = "--with-system-zlib --with-fastjar"
-
do_configure () {
gnu-configize || die "failure running gnu-configize"
oe_runconf
}
+do_make() {
+ oe_runmake bin_PROGRAMS
+}
+
do_stage() {
- install -d ${STAGING_BINDIR}
- install -m 755 fastjar ${STAGING_BINDIR}/
- install -m 755 grepjar ${STAGING_BINDIR}/
+ oe_runmake install-binPROGRAMS
}