From 3ec85cf15ae99422c63f6f93a27a437e80f67ffd Mon Sep 17 00:00:00 2001 From: Michael Palimaka Date: Sat, 10 Feb 2018 10:35:06 +1100 Subject: [PATCH] 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 b664edb611bd7..2782889a3d9ea 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 }