From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 0CD1F13881E for ; Mon, 28 Sep 2015 16:13:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AD2F721C010; Mon, 28 Sep 2015 16:13:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 57BAA21C010 for ; Mon, 28 Sep 2015 16:13:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9F17C3409B7 for ; Mon, 28 Sep 2015 16:13:32 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7B4A320E for ; Mon, 28 Sep 2015 16:13: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: <1443456805.48d27c85aa50a495eef5cf051963d6d221b2a070.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-block/fio/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-block/fio/fio-2.2.9.ebuild X-VCS-Directories: sys-block/fio/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 48d27c85aa50a495eef5cf051963d6d221b2a070 X-VCS-Branch: master Date: Mon, 28 Sep 2015 16:13: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-Archives-Salt: fcb96f95-cc2c-4134-87dc-760552ea4ca9 X-Archives-Hash: a7a0d62296e2959b64e5914df1f8b129 commit: 48d27c85aa50a495eef5cf051963d6d221b2a070 Author: Mike Frysinger gentoo org> AuthorDate: Mon Sep 28 16:13:07 2015 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Mon Sep 28 16:13:25 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48d27c85 sys-block/fio: fix inverted USE=static logic sys-block/fio/fio-2.2.9.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-block/fio/fio-2.2.9.ebuild b/sys-block/fio/fio-2.2.9.ebuild index a98ae8c..32929cb 100644 --- a/sys-block/fio/fio-2.2.9.ebuild +++ b/sys-block/fio/fio-2.2.9.ebuild @@ -58,7 +58,7 @@ src_configure() { $(usex gtk '--enable-gfio' '') \ $(usex numa '' '--disable-numa') \ $(usex rbd '' '--disable-rbd') \ - $(usex static '' '--build-static') \ + $(usex static '--build-static' '') \ || die 'configure failed' }