dev-db/sqlcmd: make DOCS local to avoid variable pollution

Signed-off-by: Lucio Sauer <watermanpaint@posteo.net>
This commit is contained in:
Lucio Sauer
2024-07-18 16:29:58 +02:00
parent 8d0990b583
commit a08b91c39b
2 changed files with 11 additions and 11 deletions

View File

@@ -1,4 +1,4 @@
# Copyright 2023 Gentoo Authors
# Copyright 2023-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -34,9 +34,10 @@ src_install() {
dofishcomp "completions/${PN}.fish"
dozshcomp "completions/_${PN}"
DOCS=(
"README.md"
"SECURITY.md"
)
local DOCS=(
"README.md"
"SECURITY.md"
)
einstalldocs
}