From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1346917-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7B0F6158086 for <garchives@archives.gentoo.org>; Tue, 7 Dec 2021 07:55:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BF6922BC002; Tue, 7 Dec 2021 07:55:53 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 662B12BC002 for <gentoo-commits@lists.gentoo.org>; Tue, 7 Dec 2021 07:55:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5D1953434B9 for <gentoo-commits@lists.gentoo.org>; Tue, 7 Dec 2021 07:55:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 163DE79 for <gentoo-commits@lists.gentoo.org>; Tue, 7 Dec 2021 07:55:51 +0000 (UTC) From: "Sam James" <sam@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" <sam@gentoo.org> Message-ID: <1638863744.bb5c3efece5823f98dd35eb61ddc72f4d2ee7660.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-fonts/jisx0213-fonts/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-fonts/jisx0213-fonts/jisx0213-fonts-20040425-r3.ebuild X-VCS-Directories: media-fonts/jisx0213-fonts/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: bb5c3efece5823f98dd35eb61ddc72f4d2ee7660 X-VCS-Branch: master Date: Tue, 7 Dec 2021 07:55:51 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 753949ec-44b4-4d6e-9274-2279bf646aec X-Archives-Hash: 200e319d4db677ce108d2dacc6f54dc4 commit: bb5c3efece5823f98dd35eb61ddc72f4d2ee7660 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Tue Dec 7 07:55:37 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Dec 7 07:55:44 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb5c3efe media-fonts/jisx0213-fonts: add missing || dies Signed-off-by: Sam James <sam <AT> gentoo.org> media-fonts/jisx0213-fonts/jisx0213-fonts-20040425-r3.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/media-fonts/jisx0213-fonts/jisx0213-fonts-20040425-r3.ebuild b/media-fonts/jisx0213-fonts/jisx0213-fonts-20040425-r3.ebuild index 353b9ba77fe9..1ba7e949cfd2 100644 --- a/media-fonts/jisx0213-fonts/jisx0213-fonts-20040425-r3.ebuild +++ b/media-fonts/jisx0213-fonts/jisx0213-fonts-20040425-r3.ebuild @@ -36,9 +36,9 @@ FONTDIR="/usr/share/fonts/${FONT_PN}" src_compile() { einfo "Making bold and italic faces..." for bdf in *.bdf; do - mkbold -r -L ${bdf} >${bdf%.bdf}b.bdf - mkitalic ${bdf} >${bdf%.bdf}i.bdf - mkbolditalic -r -L ${bdf} >${bdf%.bdf}bi.bdf + mkbold -r -L ${bdf} >${bdf%.bdf}b.bdf || die + mkitalic ${bdf} >${bdf%.bdf}i.bdf || die + mkbolditalic -r -L ${bdf} >${bdf%.bdf}bi.bdf || die done font-ebdftopcf_src_compile }