From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D5EBF138330 for ; Tue, 29 May 2018 20:10:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6AFCFE0819; Tue, 29 May 2018 20:10:39 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 43BD7E0819 for ; Tue, 29 May 2018 20:10:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E8480335C79 for ; Tue, 29 May 2018 20:10:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 17DC22C1 for ; Tue, 29 May 2018 20:10:35 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1527624622.2c3f278b79616715e6f6475e3f8a1c1708aa5a25.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/tokyodystopia/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/tokyodystopia/tokyodystopia-0.9.15.ebuild X-VCS-Directories: app-text/tokyodystopia/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 2c3f278b79616715e6f6475e3f8a1c1708aa5a25 X-VCS-Branch: master Date: Tue, 29 May 2018 20:10:35 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a3851a15-a766-44ba-ba35-bebee9fe32ab X-Archives-Hash: e672b3a9f1b7f3d929a63dccbf2a9965 commit: 2c3f278b79616715e6f6475e3f8a1c1708aa5a25 Author: Aaron Bauman gentoo org> AuthorDate: Tue May 29 19:55:53 2018 +0000 Commit: Aaron Bauman gentoo 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 }