summaryrefslogtreecommitdiff
path: root/tinylogin
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2003-11-26 23:09:02 +0000
committerChris Larson <clarson@kergoth.com>2003-11-26 23:09:02 +0000
commit0cec914363b83b07235fc2bf75346bd4b6e1e562 (patch)
treede18dde9ffb80376d40b4f0a2fc7560fcca41c84 /tinylogin
parent2a6179483e8df707a76650a5b9ea9e49befa8659 (diff)
Fixing remnant CROSS usage.
BKrev: 3fc5328e0dIUM-kS9AHuFvdnc6xS3g
Diffstat (limited to 'tinylogin')
-rw-r--r--tinylogin/tinylogin_1.4.oe17
1 files changed, 17 insertions, 0 deletions
diff --git a/tinylogin/tinylogin_1.4.oe b/tinylogin/tinylogin_1.4.oe
index e69de29bb2..e91e4dea04 100644
--- a/tinylogin/tinylogin_1.4.oe
+++ b/tinylogin/tinylogin_1.4.oe
@@ -0,0 +1,17 @@
+SRC_URI = http://tinylogin.busybox.net/downloads/${P}.tar.bz2
+S = ${WORKDIR}/${P}
+
+EXTRA_OEMAKE =
+
+do_compile () {
+ oe_runmake 'CC=${CC}' 'CROSS=${HOST_PREFIX}'
+}
+
+do_install () {
+ install -d ${D}/bin
+ install -m 4755 tinylogin ${D}/bin/tinylogin
+ for i in `cat tinylogin.links`; do
+ mkdir -p ${D}/`dirname $i`
+ ln -sf /bin/tinylogin ${D}/$i
+ done
+}