diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2016-12-07 09:45:37 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-11 11:46:51 +0000 |
commit | 773ea033e973abd2b97c62b8095d7142c020ad24 (patch) | |
tree | 5ff7a5b15f041c030b3ba5408d5e56a71458e38d | |
parent | bee636b759feafba544e95d6355c52eb85e4ba72 (diff) | |
download | openembedded-core-773ea033e973abd2b97c62b8095d7142c020ad24.tar.gz openembedded-core-773ea033e973abd2b97c62b8095d7142c020ad24.tar.bz2 openembedded-core-773ea033e973abd2b97c62b8095d7142c020ad24.zip |
libarchive: fix ALTERNATIVE_PRIORITY to avoid conflict
'tar' utility from tar and bsdtar has the same alternative priority.
'cpio' utility from cpio and bsdcpio has the same alternative priority.
Lower the ALTERNATIVE_PRIORITY to avoid conflict.
(From OE-Core rev: 9a59ff628771b586666999d44923968a6bc58956)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta/recipes-extended/libarchive/libarchive_3.2.2.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-extended/libarchive/libarchive_3.2.2.bb b/meta/recipes-extended/libarchive/libarchive_3.2.2.bb index cf66e9d8e8..7917ce707f 100644 --- a/meta/recipes-extended/libarchive/libarchive_3.2.2.bb +++ b/meta/recipes-extended/libarchive/libarchive_3.2.2.bb @@ -48,7 +48,7 @@ do_configure_prepend() { cp -R ${STAGING_INCDIR_NATIVE}/ext2fs ${WORKDIR}/extra-includes/ } -ALTERNATIVE_PRIORITY = "100" +ALTERNATIVE_PRIORITY = "80" PACKAGES =+ "bsdtar" FILES_bsdtar = "${bindir}/bsdtar" |