From: Chris Larson Date: Wed, 17 Nov 2004 02:48:56 +0000 (+0000) Subject: Split encdec-updater into two .oe's, one for native, one for host. X-Git-Tag: Release-2010-05/1~16190 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1a153be82957d7e90ec8ba45ea1b1cebf5011481;p=openembedded.git Split encdec-updater into two .oe's, one for native, one for host. BKrev: 419abc18CIibmcw8eq6WQkx2F78tkg --- diff --git a/encdec-updater/encdec-updater-native.oe b/encdec-updater/encdec-updater-native.oe new file mode 100644 index 0000000000..e69de29bb2 diff --git a/encdec-updater/encdec-updater.oe b/encdec-updater/encdec-updater.oe index 45e3eb71b7..f918678df0 100644 --- a/encdec-updater/encdec-updater.oe +++ b/encdec-updater/encdec-updater.oe @@ -1,14 +1,13 @@ SECTION = "console/utils" DESCRIPTION = "A tool to encode and decode the Sharp Zaurus updater.sh skript" -inherit native - SRC_URI = "file://encdec-updater.c" do_compile() { ${CC} -o encdec-updater ${WORKDIR}/encdec-updater.c } -do_stage() { - install -m 0755 encdec-updater ${STAGING_BINDIR} +do_install() { + install -d ${D}/${bindir} + install -m 0755 encdec-updater ${D}/${bindir}/ }