commit: 703199b7cf029be2a88ae1482f2d4089c9be957c Author: Matt Turner <mattst88 <AT> gentoo <DOT> org> AuthorDate: Wed May 10 01:56:01 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Thu May 11 01:24:42 2023 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=703199b7
install-qa-check.d/90config-impl-decl: Skip acl_get_perm_np on Linux Seen in net-misc/rsync. It seems that at least Darwin, FreeBSD, and NetBSD have this function. Bug: https://bugs.gentoo.org/898366 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org> Closes: https://github.com/gentoo/portage/pull/1034 Signed-off-by: Sam James <sam <AT> gentoo.org> bin/install-qa-check.d/90config-impl-decl | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/install-qa-check.d/90config-impl-decl b/bin/install-qa-check.d/90config-impl-decl index 068a7186f..7969dff17 100644 --- a/bin/install-qa-check.d/90config-impl-decl +++ b/bin/install-qa-check.d/90config-impl-decl @@ -44,6 +44,7 @@ add_default_skips() { # Functions not available on Linux [[ ${CHOST} == *linux* ]] && QA_CONFIG_IMPL_DECL_SKIP+=( acl + acl_get_perm_np res_getservers res_ndestroy statacl
