summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-11-17 02:48:56 +0000
committerChris Larson <clarson@kergoth.com>2004-11-17 02:48:56 +0000
commit1a153be82957d7e90ec8ba45ea1b1cebf5011481 (patch)
tree3f5168b189a9a0675c24dbdb8a9942e59480a956
parent1a4c8ad067fe9dba8dccee1c6ab1ee52241eae86 (diff)
Split encdec-updater into two .oe's, one for native, one for host.
BKrev: 419abc18CIibmcw8eq6WQkx2F78tkg
-rw-r--r--encdec-updater/encdec-updater-native.oe0
-rw-r--r--encdec-updater/encdec-updater.oe7
2 files changed, 3 insertions, 4 deletions
diff --git a/encdec-updater/encdec-updater-native.oe b/encdec-updater/encdec-updater-native.oe
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/encdec-updater/encdec-updater-native.oe
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}/
}