Gentoo Archives: gentoo-commits

From: Davide Pesavento <pesa@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/qt:master commit in: eclass/
Date: Wed, 04 Jun 2014 02:08:33
Message-Id: 1401847057.68c798f41e1be1585039c8f4e5ef5eae7ac0d017.pesa@gentoo
1 commit: 68c798f41e1be1585039c8f4e5ef5eae7ac0d017
2 Author: Davide Pesavento <pesa <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 4 01:57:37 2014 +0000
4 Commit: Davide Pesavento <pesa <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 4 01:57:37 2014 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=68c798f4
7
8 [qt4-build-multilib.eclass] -fast is practically redundant with -dont-process.
9
10 ---
11 eclass/qt4-build-multilib.eclass | 6 +++---
12 1 file changed, 3 insertions(+), 3 deletions(-)
13
14 diff --git a/eclass/qt4-build-multilib.eclass b/eclass/qt4-build-multilib.eclass
15 index 27e610d..f674af6 100644
16 --- a/eclass/qt4-build-multilib.eclass
17 +++ b/eclass/qt4-build-multilib.eclass
18 @@ -297,13 +297,13 @@ multilib_src_configure() {
19 # build shared libraries
20 -shared
21
22 - # misc stuff
23 - -fast -largefile
24 -
25 # skip recursive processing of .pro files at the end of configure
26 # (we run qmake by ourselves), thus saving quite a bit of time
27 -dont-process
28
29 + # always enable large file support
30 + -largefile
31 +
32 # exceptions USE flag
33 $(in_iuse exceptions && qt_use exceptions || echo -exceptions)