commit: 3ec85cf15ae99422c63f6f93a27a437e80f67ffd
Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 9 23:35:06 2018 +0000
Commit: Davide Pesavento <pesa <AT> gentoo <DOT> org>
CommitDate: Tue Mar 6 05:37:23 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ec85cf1
qt5-build.eclass: also call default_src_unpack for live ebuilds
This allows, for example, patch tarballs to be applied (as is currently
required for qtwebengine).
eclass/qt5-build.eclass | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass
index b664edb611b..2782889a3d9 100644
--- a/eclass/qt5-build.eclass
+++ b/eclass/qt5-build.eclass
@@ -170,7 +170,7 @@ qt5-build_src_unpack() {
fi
case ${QT5_BUILD_TYPE} in
- live) git-r3_src_unpack ;;
+ live) git-r3_src_unpack ;&
release) default ;;
esac
}