From: Chen Qi Date: Thu, 29 Oct 2015 09:22:42 +0000 (+0800) Subject: mktemp: raise the priority to avoid conflicting with coreutils X-Git-Tag: 2016-4~2255 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=1c0cfffee21e99a7356c9046c86628bc0acf654c;p=openembedded-core.git mktemp: raise the priority to avoid conflicting with coreutils If mktemp and coreutils have the same priority for the 'mktemp' command, /bin/mktemp might point to different destinations depending on which package is installed first. Raise the priority to 200 in mktemp recipe to avoid such problem. Signed-off-by: Chen Qi Signed-off-by: Ross Burton --- diff --git a/meta/recipes-extended/mktemp/mktemp_1.7.bb b/meta/recipes-extended/mktemp/mktemp_1.7.bb index fe238eea37..d22668ca6a 100644 --- a/meta/recipes-extended/mktemp/mktemp_1.7.bb +++ b/meta/recipes-extended/mktemp/mktemp_1.7.bb @@ -27,7 +27,7 @@ do_install_append () { ALTERNATIVE_${PN} = "mktemp" ALTERNATIVE_LINK_NAME[mktemp] = "${base_bindir}/mktemp" -ALTERNATIVE_PRIORITY = "100" +ALTERNATIVE_PRIORITY = "200" ALTERNATIVE_${PN}-doc = "mktemp.1" ALTERNATIVE_PRIORITY_${PN}-doc = "300"