From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1053479-garchives=archives.gentoo.org@lists.gentoo.org> 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 F0788138334 for <garchives@archives.gentoo.org>; Sat, 20 Oct 2018 22:14:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B84E0E07ED; Sat, 20 Oct 2018 22:14:46 +0000 (UTC) Received: from smtp.gentoo.org (unknown [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 882E5E07ED for <gentoo-commits@lists.gentoo.org>; Sat, 20 Oct 2018 22:14:46 +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 E3C33335CD9 for <gentoo-commits@lists.gentoo.org>; Sat, 20 Oct 2018 22:14:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2E1A1442 for <gentoo-commits@lists.gentoo.org>; Sat, 20 Oct 2018 22:14:23 +0000 (UTC) From: "Sven Wegener" <swegener@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, "Sven Wegener" <swegener@gentoo.org> Message-ID: <1540073644.d145595d9ba4e4818c882df4348ab7f610c4d951.swegener@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/xfsprogs/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/xfsprogs/xfsprogs-4.17.0-r1.ebuild sys-fs/xfsprogs/xfsprogs-4.18.0.ebuild X-VCS-Directories: sys-fs/xfsprogs/ X-VCS-Committer: swegener X-VCS-Committer-Name: Sven Wegener X-VCS-Revision: d145595d9ba4e4818c882df4348ab7f610c4d951 X-VCS-Branch: master Date: Sat, 20 Oct 2018 22:14:23 +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-Archives-Salt: df6cfa74-9886-408c-9181-95819a06a632 X-Archives-Hash: 3d174b09de1218c87472033c329da040 commit: d145595d9ba4e4818c882df4348ab7f610c4d951 Author: Sven Wegener <swegener <AT> gentoo <DOT> org> AuthorDate: Sat Oct 20 22:13:32 2018 +0000 Commit: Sven Wegener <swegener <AT> gentoo <DOT> org> CommitDate: Sat Oct 20 22:14:04 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d145595d sys-fs/xfsprogs: Use use_enable for static-libs Signed-off-by: Sven Wegener <swegener <AT> gentoo.org> Package-Manager: Portage-2.3.49, Repoman-2.3.11 sys-fs/xfsprogs/xfsprogs-4.17.0-r1.ebuild | 6 +----- sys-fs/xfsprogs/xfsprogs-4.18.0.ebuild | 6 +----- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/sys-fs/xfsprogs/xfsprogs-4.17.0-r1.ebuild b/sys-fs/xfsprogs/xfsprogs-4.17.0-r1.ebuild index 9c4506c9ced..70e095eb507 100644 --- a/sys-fs/xfsprogs/xfsprogs-4.17.0-r1.ebuild +++ b/sys-fs/xfsprogs/xfsprogs-4.17.0-r1.ebuild @@ -61,12 +61,8 @@ src_configure() { $(use_enable nls gettext) $(use_enable readline) $(usex readline --disable-editline $(use_enable libedit editline)) + $(use_enable static-libs static) ) - if use static-libs ; then - myconf+=( --enable-static ) - else - myconf+=( --disable-static ) - fi econf "${myconf[@]}" diff --git a/sys-fs/xfsprogs/xfsprogs-4.18.0.ebuild b/sys-fs/xfsprogs/xfsprogs-4.18.0.ebuild index 75efba7d259..ac490a41e28 100644 --- a/sys-fs/xfsprogs/xfsprogs-4.18.0.ebuild +++ b/sys-fs/xfsprogs/xfsprogs-4.18.0.ebuild @@ -61,12 +61,8 @@ src_configure() { $(use_enable nls gettext) $(use_enable readline) $(usex readline --disable-editline $(use_enable libedit editline)) + $(use_enable static-libs static) ) - if use static-libs ; then - myconf+=( --enable-static ) - else - myconf+=( --disable-static ) - fi econf "${myconf[@]}"