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 87BE41382C5 for ; Fri, 19 Feb 2021 02:07:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C5D51E0AE8; Fri, 19 Feb 2021 02:07:34 +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 AA9C5E0AE8 for ; Fri, 19 Feb 2021 02:07:34 +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 3DB63340EC1 for ; Fri, 19 Feb 2021 02:07:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B91CC4E4 for ; Fri, 19 Feb 2021 02:07:31 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1613700425.eba7ca231b8c24a4cb9f4ffae3ad4b9497401db8.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblzw/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/liblzw/liblzw-0.3.ebuild X-VCS-Directories: dev-libs/liblzw/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: eba7ca231b8c24a4cb9f4ffae3ad4b9497401db8 X-VCS-Branch: master Date: Fri, 19 Feb 2021 02:07:31 +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: 9d04ee0a-1de8-4371-94ad-863f990bcf8d X-Archives-Hash: 2994b10b57fc94754b54027942ea410e commit: eba7ca231b8c24a4cb9f4ffae3ad4b9497401db8 Author: Mike Frysinger gentoo org> AuthorDate: Fri Feb 19 02:04:25 2021 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Fri Feb 19 02:07:05 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eba7ca23 dev-libs/liblzw: fix thinko: static->static-libs Signed-off-by: Mike Frysinger gentoo.org> dev-libs/liblzw/liblzw-0.3.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-libs/liblzw/liblzw-0.3.ebuild b/dev-libs/liblzw/liblzw-0.3.ebuild index ffb0f9291ca..2526a247640 100644 --- a/dev-libs/liblzw/liblzw-0.3.ebuild +++ b/dev-libs/liblzw/liblzw-0.3.ebuild @@ -10,10 +10,10 @@ SRC_URI="https://github.com/vapier/liblzw/releases/download/v${PV}/${P}.tar.xz" LICENSE="public-domain" SLOT="0" KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~m68k ~s390 ~x86" -IUSE="static" +IUSE="static-libs" src_configure() { - econf --disable-werror $(use_enable static) + econf --disable-werror $(use_enable static{-libs,}) } src_install() {