diff options
author | Chris Larson <clarson@kergoth.com> | 2003-09-16 20:39:43 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2003-09-16 20:39:43 +0000 |
commit | 1369211ac6cdee1ab8aa64c0020a5d52f8540c39 (patch) | |
tree | c9aa37f13989b720619d3de4bd961203b4116fd1 /content/tinylogin-1.4.oe | |
parent | d3aa25dd28cb8ae476872f38abf60333712c9cc7 (diff) |
Updates to .oe's to utilize the autotools oeclass, and removal of unnecessary 'set -e's now that its default.
BKrev: 3f67750f7hz7fa_5DclmHoTZT7vW3Q
Diffstat (limited to 'content/tinylogin-1.4.oe')
-rw-r--r-- | content/tinylogin-1.4.oe | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/content/tinylogin-1.4.oe b/content/tinylogin-1.4.oe index e69de29bb2..3c1e111f16 100644 --- a/content/tinylogin-1.4.oe +++ b/content/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=${CROSS}' +} + +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 +} |