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 747AF13881E for ; Mon, 28 Sep 2015 16:18:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DAEE921C009; Mon, 28 Sep 2015 16:18: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 8CAAD21C009 for ; Mon, 28 Sep 2015 16:18: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 741E1340940 for ; Mon, 28 Sep 2015 16:18:31 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A1EDF20E for ; Mon, 28 Sep 2015 16:18:28 +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: <1443457102.18b9751839db4a5bebd79d9e3dac6d19cc0d3ef0.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: 18b9751839db4a5bebd79d9e3dac6d19cc0d3ef0 X-VCS-Branch: master Date: Mon, 28 Sep 2015 16:18:28 +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: d21f545b-af3c-4605-a48e-7e4ddbcfd316 X-Archives-Hash: 872c8df4eab7de64aee65511dcd34927 commit: 18b9751839db4a5bebd79d9e3dac6d19cc0d3ef0 Author: Mike Frysinger gentoo org> AuthorDate: Mon Sep 28 16:14:13 2015 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Mon Sep 28 16:18:22 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18b97518 sys-block/fio: echo configure step for debugging sys-block/fio/fio-2.2.9.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sys-block/fio/fio-2.2.9.ebuild b/sys-block/fio/fio-2.2.9.ebuild index 32929cb..6af0f05 100644 --- a/sys-block/fio/fio-2.2.9.ebuild +++ b/sys-block/fio/fio-2.2.9.ebuild @@ -51,6 +51,7 @@ src_prepare() { src_configure() { chmod g-w "${T}" # not a real configure script + set -- \ ./configure \ --extra-cflags="${CFLAGS} ${CPPFLAGS}" \ --cc="$(tc-getCC)" \ @@ -58,8 +59,9 @@ src_configure() { $(usex gtk '--enable-gfio' '') \ $(usex numa '' '--disable-numa') \ $(usex rbd '' '--disable-rbd') \ - $(usex static '--build-static' '') \ - || die 'configure failed' + $(usex static '--build-static' '') + echo "$@" + "$@" || die 'configure failed' } src_compile() {