commit: adfa7043fcb1fe1831225bc075bdf27a752a108f
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 15 11:57:27 2016 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat Oct 15 11:59:59 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adfa7043
media-plugins/gst-transcoder: It was failing silently as upstream renamed the
dir, add more die statements to try to catch this errors.
Package-Manager: portage-2.3.1
media-plugins/gst-transcoder/gst-transcoder-1.8.2.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/media-plugins/gst-transcoder/gst-transcoder-1.8.2.ebuild
b/media-plugins/gst-transcoder/gst-transcoder-1.8.2.ebuild
index 1434f27..dee0c8b 100644
--- a/media-plugins/gst-transcoder/gst-transcoder-1.8.2.ebuild
+++ b/media-plugins/gst-transcoder/gst-transcoder-1.8.2.ebuild
@@ -38,5 +38,6 @@ src_configure() {
src_compile() {
addpredict /dev #590848
# We cannot use 'make' as it won't allow us to build verbosely
- cd build && ninja -v
+ cd mesonbuild || die
+ ninja -v || die
}