From: Henning Heinold Date: Sat, 15 May 2010 21:41:19 +0000 (+0200) Subject: ecj-bootstrap-native: convert to new staging system X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0664036a821f0e9384e1ccbbed24f74055c04968;p=openembedded.git ecj-bootstrap-native: convert to new staging system --- diff --git a/recipes/ecj/ecj-bootstrap-native.bb b/recipes/ecj/ecj-bootstrap-native.bb index 6c80de749a..594b08cb9c 100644 --- a/recipes/ecj/ecj-bootstrap-native.bb +++ b/recipes/ecj/ecj-bootstrap-native.bb @@ -21,6 +21,8 @@ PR = "r2" JAR = "ecj-bootstrap.jar" +NATIVE_INSTALL_WORKS = "1" + inherit native do_compile() { @@ -31,8 +33,8 @@ do_compile() { cat ecj.in >> ecj-bootstrap } -do_stage() { - install -d ${STAGING_BINDIR} - install -m 755 ${S}/ecj-bootstrap ${STAGING_BINDIR} - install -m 755 ${S}/ecj-bootstrap ${STAGING_BINDIR}/javac +do_install() { + install -d ${D}${bindir} + install -m 755 ${S}/ecj-bootstrap ${D}${bindir} + install -m 755 ${S}/ecj-bootstrap ${D}${bindir}/javac }