Gentoo Archives: gentoo-commits

From: Mike Frysinger <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-block/fio/
Date: Mon, 28 Sep 2015 16:18:36
Message-Id: 1443457102.18b9751839db4a5bebd79d9e3dac6d19cc0d3ef0.vapier@gentoo
1 commit: 18b9751839db4a5bebd79d9e3dac6d19cc0d3ef0
2 Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 28 16:14:13 2015 +0000
4 Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 28 16:18:22 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18b97518
7
8 sys-block/fio: echo configure step for debugging
9
10 sys-block/fio/fio-2.2.9.ebuild | 6 ++++--
11 1 file changed, 4 insertions(+), 2 deletions(-)
12
13 diff --git a/sys-block/fio/fio-2.2.9.ebuild b/sys-block/fio/fio-2.2.9.ebuild
14 index 32929cb..6af0f05 100644
15 --- a/sys-block/fio/fio-2.2.9.ebuild
16 +++ b/sys-block/fio/fio-2.2.9.ebuild
17 @@ -51,6 +51,7 @@ src_prepare() {
18 src_configure() {
19 chmod g-w "${T}"
20 # not a real configure script
21 + set -- \
22 ./configure \
23 --extra-cflags="${CFLAGS} ${CPPFLAGS}" \
24 --cc="$(tc-getCC)" \
25 @@ -58,8 +59,9 @@ src_configure() {
26 $(usex gtk '--enable-gfio' '') \
27 $(usex numa '' '--disable-numa') \
28 $(usex rbd '' '--disable-rbd') \
29 - $(usex static '--build-static' '') \
30 - || die 'configure failed'
31 + $(usex static '--build-static' '')
32 + echo "$@"
33 + "$@" || die 'configure failed'
34 }
35
36 src_compile() {