commit: 13f4cc8bf0f0605df290b67580a1c3c1816fd0a6 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org> AuthorDate: Sun Jan 14 01:20:03 2024 +0000 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org> CommitDate: Mon Jan 22 11:29:19 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13f4cc8b
gap-pkg.eclass: don't quote argument to "case" Suggested-by: Michał Górny <mgorny <AT> gentoo.org> Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org> eclass/gap-pkg.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/gap-pkg.eclass b/eclass/gap-pkg.eclass index 8dc0e6e55b01..5f91e2c2a0f1 100644 --- a/eclass/gap-pkg.eclass +++ b/eclass/gap-pkg.eclass @@ -56,7 +56,7 @@ HOMEPAGE="https://www.gap-system.org/Packages/${PN}.html" # four somewhat differently since they are implicit dependencies of # everything else in the GAP ecosystem. _GAP_PKG_IS_REQUIRED=no -case "${PN}" in +case ${PN} in gapdoc|smallgrp|primgrp|transgrp) _GAP_PKG_IS_REQUIRED=yes ;;
