Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/qt:master commit in: eclass/
Date: Fri, 09 Feb 2018 23:35:25
Message-Id: 1518219311.aaa3b5e3a01c8e2b8decb9b3464cedd484770f10.kensington@gentoo
1 commit: aaa3b5e3a01c8e2b8decb9b3464cedd484770f10
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 9 23:35:06 2018 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 9 23:35:11 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=aaa3b5e3
7
8 qt5-build.eclass: also call default_src_unpack for live ebuilds
9
10 This allows, for example, patch tarballs to be applied (as is currently required for qtwebengine).
11
12 eclass/qt5-build.eclass | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass
16 index 1a20b3da..dde08fdb 100644
17 --- a/eclass/qt5-build.eclass
18 +++ b/eclass/qt5-build.eclass
19 @@ -170,7 +170,7 @@ qt5-build_src_unpack() {
20 fi
21
22 case ${QT5_BUILD_TYPE} in
23 - live) git-r3_src_unpack ;;
24 + live) git-r3_src_unpack ;&
25 release) default ;;
26 esac
27 }