diff options
| author | Oskari Pirhonen <xxc3ncoredxx@gmail.com> | 2023-03-03 00:50:36 -0600 |
|---|---|---|
| committer | Sam James <sam@gentoo.org> | 2023-03-04 07:18:10 +0000 |
| commit | 4107569394f4710e79bd17841c9d2f0f6881e57d (patch) | |
| tree | 5b2dc91e5860f25c128b456ab792ebf640ac5ef5 /app-editors/vim-core/vim-core-9999.ebuild | |
| parent | 1d4c8dd11eaf466cfd5d5bdb633573b12b48153d (diff) | |
| download | gentoo-4107569394f4710e79bd17841c9d2f0f6881e57d.tar.gz gentoo-4107569394f4710e79bd17841c9d2f0f6881e57d.tar.bz2 gentoo-4107569394f4710e79bd17841c9d2f0f6881e57d.zip | |
app-editors/vim-core: configure implicit function declarations
Ignore implicit function declarations for platform-specific functions,
`acl()` is for Solaris and `statacl()` is for AIX.
Closes: https://bugs.gentoo.org/898406
Signed-off-by: Oskari Pirhonen <xxc3ncoredxx@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/29907
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-editors/vim-core/vim-core-9999.ebuild')
| -rw-r--r-- | app-editors/vim-core/vim-core-9999.ebuild | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/app-editors/vim-core/vim-core-9999.ebuild b/app-editors/vim-core/vim-core-9999.ebuild index 64e63ae0b84e..c2cb2313c925 100644 --- a/app-editors/vim-core/vim-core-9999.ebuild +++ b/app-editors/vim-core/vim-core-9999.ebuild @@ -38,6 +38,14 @@ if [[ ${PV} != 9999* ]]; then ) fi +# platform-specific checks (bug #898406): +# - acl() -- Solaris +# - statacl() -- AIX +QA_CONFIG_IMPL_DECL_SKIP=( + 'acl' + 'statacl' +) + pkg_setup() { # people with broken alphabets run into trouble. bug #82186. unset LANG LC_ALL |
