diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2011-11-11 13:23:05 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-15 11:54:44 +0000 |
commit | 4ed8241b58ad3180311fc20cb6ef26acf44058b4 (patch) | |
tree | 6507a6a1bafdbb134c992eb4c6f16ce281f09b84 /meta/recipes-extended/time/time.inc | |
parent | 36fdc67154bdeb15094df23fc7553a163a45b592 (diff) | |
download | openembedded-core-4ed8241b58ad3180311fc20cb6ef26acf44058b4.tar.gz openembedded-core-4ed8241b58ad3180311fc20cb6ef26acf44058b4.tar.bz2 openembedded-core-4ed8241b58ad3180311fc20cb6ef26acf44058b4.zip |
time: use u-a for time, conflicts with busybox
* it was reported here:
http://lists.linuxtogo.org/pipermail/openembedded-core/2011-September/009409.html
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta/recipes-extended/time/time.inc')
-rw-r--r-- | meta/recipes-extended/time/time.inc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/meta/recipes-extended/time/time.inc b/meta/recipes-extended/time/time.inc index 2d9dab8e85..401288b0ce 100644 --- a/meta/recipes-extended/time/time.inc +++ b/meta/recipes-extended/time/time.inc @@ -6,3 +6,13 @@ SECTION = "utils" LICENSE = "GPLv2+" LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b" +inherit update-alternatives + +do_install_append () { + mv ${D}${bindir}/time ${D}${bindir}/time.${PN} +} + +ALTERNATIVE_NAME = "time" +ALTERNATIVE_LINK = "${bindir}/time" +ALTERNATIVE_PATH = "${bindir}/time.${PN}" +ALTERNATIVE_PRIORITY = "100" |