commit: bd6e366894615fc7b2c7faafca666933ad850340 Author: Florian Schmaus <flow <AT> gentoo <DOT> org> AuthorDate: Sun Feb 19 09:04:21 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sun Feb 19 12:22:58 2023 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=bd6e3668
install-qa-check.d/60pkgconfig: fix eapi_has_version_functions call The function is prefixed with three three underscores, not two. Fixes: f0d4e696f82d ("install-qa-check.d/60pkgconfig: conditionally source eapi7-ver-funcs.sh") Signed-off-by: Florian Schmaus <flow <AT> gentoo.org> Closes: https://github.com/gentoo/portage/pull/990 Signed-off-by: Sam James <sam <AT> gentoo.org> bin/install-qa-check.d/60pkgconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/install-qa-check.d/60pkgconfig b/bin/install-qa-check.d/60pkgconfig index 625b22c9e..acbee4df1 100644 --- a/bin/install-qa-check.d/60pkgconfig +++ b/bin/install-qa-check.d/60pkgconfig @@ -1,7 +1,7 @@ # Check for pkg-config file issues # Ensure that ver_test is available. -if ! __eapi_has_version_functions; then +if ! ___eapi_has_version_functions; then source "${PORTAGE_BIN_PATH}/eapi7-ver-funcs.sh" || exit 1 fi