commit: 0f52e2861e7f66e0bc0c632f6ecfc9b14c7ad827 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Tue Dec 6 12:47:16 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Dec 6 12:47:16 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f52e286
app-doc/gnucash-docs: fix install w/ multiple L10N set The quoting changes behaviour as it's no longer split. Closes: https://bugs.gentoo.org/884587 Signed-off-by: Sam James <sam <AT> gentoo.org> app-doc/gnucash-docs/gnucash-docs-4.12.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-doc/gnucash-docs/gnucash-docs-4.12.ebuild b/app-doc/gnucash-docs/gnucash-docs-4.12.ebuild index 0156cc56c7b2..d1f8186577d7 100644 --- a/app-doc/gnucash-docs/gnucash-docs-4.12.ebuild +++ b/app-doc/gnucash-docs/gnucash-docs-4.12.ebuild @@ -33,7 +33,7 @@ src_install() { local doc_type my_lang for doc_type in manual guide; do - for my_lang in C "${L10N}"; do + for my_lang in C ${L10N}; do [[ -z ${my_lang} ]] && continue case "${my_lang}" in
