diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2016-12-07 09:45:37 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-12-13 22:47:27 +0000 |
commit | 9a59ff628771b586666999d44923968a6bc58956 (patch) | |
tree | 4694c3ca774474b3746c0431b1e3a74c057485c7 /meta/recipes-extended/libarchive | |
parent | 415eaacb83b1c6df5210fb423e3e96e530b1dc42 (diff) | |
download | openembedded-core-9a59ff628771b586666999d44923968a6bc58956.tar.gz openembedded-core-9a59ff628771b586666999d44923968a6bc58956.tar.bz2 openembedded-core-9a59ff628771b586666999d44923968a6bc58956.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.
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-extended/libarchive')
-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 64e8983585..8ad62adf01 100644 --- a/meta/recipes-extended/libarchive/libarchive_3.2.2.bb +++ b/meta/recipes-extended/libarchive/libarchive_3.2.2.bb @@ -49,7 +49,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" |