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 C0AAD138334 for ; Mon, 23 Sep 2019 12:35:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E69C1E088D; Mon, 23 Sep 2019 12:35:02 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 CAB73E088D for ; Mon, 23 Sep 2019 12:35:02 +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 55D7634B4AE for ; Mon, 23 Sep 2019 12:35:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 00C46780 for ; Mon, 23 Sep 2019 12:34:59 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1569242050.c5a32969519ae2907264995006e4d1d429d00cf2.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/font.eclass X-VCS-Directories: eclass/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: c5a32969519ae2907264995006e4d1d429d00cf2 X-VCS-Branch: master Date: Mon, 23 Sep 2019 12:34:59 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 787d98ec-09f7-4faf-98aa-2a6b07da2a4a X-Archives-Hash: 7b71b70d6e8e86955c5f1696a6bfbb09 commit: c5a32969519ae2907264995006e4d1d429d00cf2 Author: Joonas Niilola gentoo org> AuthorDate: Mon Sep 23 12:34:10 2019 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Mon Sep 23 12:34:10 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5a32969 font.eclass: add README.md to dodoc list Signed-off-by: Joonas Niilola gentoo.org> eclass/font.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/font.eclass b/eclass/font.eclass index 5f3e15eafc5..1570bf3f6e1 100644 --- a/eclass/font.eclass +++ b/eclass/font.eclass @@ -199,7 +199,7 @@ font_src_install() { [[ -n ${DOCS} ]] && { dodoc ${DOCS} || die "docs installation failed" ; } # install common docs - for commondoc in COPYRIGHT README{,.txt} NEWS AUTHORS BUGS ChangeLog FONTLOG.txt; do + for commondoc in COPYRIGHT README{,.md,.txt} NEWS AUTHORS BUGS ChangeLog FONTLOG.txt; do [[ -s ${commondoc} ]] && dodoc ${commondoc} done }