commit: 2c3f278b79616715e6f6475e3f8a1c1708aa5a25
Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Tue May 29 19:55:53 2018 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Tue May 29 20:10:22 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c3f278b
app-text/tokyodystopia: avoid unnecessary globs
Package-Manager: Portage-2.3.40, Repoman-2.3.9
app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild
b/app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild
index cbd327fef5f..853fc3b700e 100644
--- a/app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild
+++ b/app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild
@@ -26,13 +26,13 @@ src_configure() {
}
src_install() {
- HTML_DOCS=( doc/* )
+ HTML_DOCS=( doc/. )
default
if use examples; then
insinto /usr/share/${PF}/example
- doins example/*
+ doins example/.
fi
}