build: emotion: fix lookup of gstreamer 0.10 dependency

The pkg-config file for the 0.10 series of gstreamer is called
gstreamer-0.10.pc and we need to correct name in the dependency check
here to find it. Improving our CI coverage does spot bugs. :-)

Reviewed-by: Marcel Hollerbach <mail@marcel-hollerbach.de>
Differential Revision: https://phab.enlightenment.org/D9114
This commit is contained in:
Stefan Schmidt 2019-06-19 10:58:42 +02:00
parent b0182dd744
commit 47ada4f72c
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ generic_src = files([
'emotion_sink.c'
])
generic_deps = [dependency('gstreamer-0.1')]
generic_deps = [dependency('gstreamer-0.10')]
shared_module(emotion_loader,
generic_src,