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 ACF4D13835A for ; Wed, 9 Dec 2020 14:18:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0DB2CE0949; Wed, 9 Dec 2020 14:18:08 +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 EB165E0949 for ; Wed, 9 Dec 2020 14:18:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 F20A3340E63 for ; Wed, 9 Dec 2020 14:18:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 42637488 for ; Wed, 9 Dec 2020 14:18:04 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1607523479.9fa56ed2563ce9f83421f3b87942c7353535b6cc.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/autoconf/autoconf-2.70.ebuild sys-devel/autoconf/autoconf-9999.ebuild X-VCS-Directories: sys-devel/autoconf/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 9fa56ed2563ce9f83421f3b87942c7353535b6cc X-VCS-Branch: master Date: Wed, 9 Dec 2020 14:18:04 +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: 71e87347-92b8-4d17-acf0-dc710bb0a558 X-Archives-Hash: f7909beecb28ce3f74a1aafea7a11084 commit: 9fa56ed2563ce9f83421f3b87942c7353535b6cc Author: Lars Wendler gentoo org> AuthorDate: Wed Dec 9 14:10:13 2020 +0000 Commit: Lars Wendler gentoo org> CommitDate: Wed Dec 9 14:17:59 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fa56ed2 sys-devel/autoconf: Minor style adjustments Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Lars Wendler gentoo.org> sys-devel/autoconf/autoconf-2.70.ebuild | 5 +++-- sys-devel/autoconf/autoconf-9999.ebuild | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/sys-devel/autoconf/autoconf-2.70.ebuild b/sys-devel/autoconf/autoconf-2.70.ebuild index 9fc88ce2c69..94c959125e2 100644 --- a/sys-devel/autoconf/autoconf-2.70.ebuild +++ b/sys-devel/autoconf/autoconf-2.70.ebuild @@ -55,7 +55,8 @@ src_install() { default local f - for f in config.guess config.sub; do - ln -fs ../../gnuconfig/${f} "${ED}"/usr/share/autoconf-*/build-aux/${f} || die + for f in config.{guess,sub} ; do + ln -fs ../../gnuconfig/${f} \ + "${ED}"/usr/share/autoconf-*/build-aux/${f} || die done } diff --git a/sys-devel/autoconf/autoconf-9999.ebuild b/sys-devel/autoconf/autoconf-9999.ebuild index e5a96ae984e..f3b786e014a 100644 --- a/sys-devel/autoconf/autoconf-9999.ebuild +++ b/sys-devel/autoconf/autoconf-9999.ebuild @@ -47,7 +47,8 @@ src_install() { default local f - for f in config.guess config.sub; do - ln -fs ../../gnuconfig/${f} "${ED}"/usr/share/autoconf-*/build-aux/${f} || die + for f in config.{guess,sub} ; do + ln -fs ../../gnuconfig/${f} \ + "${ED}"/usr/share/autoconf-*/build-aux/${f} || die done }