rpicamsrc: fix build with older meson versions

assert() used to require two arguments.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/668>
This commit is contained in:
Tim-Philipp Müller 2020-07-10 21:43:14 +01:00
parent 3b0437e58d
commit 5a7275220b

View file

@ -8,7 +8,7 @@ rpicamsrc_sources = [
]
if host_system != 'linux' or (host_cpu != 'arm' and host_cpu != 'aarch64')
assert(not get_option('rpicamsrc').enabled())
assert(not get_option('rpicamsrc').enabled(), 'rpicamsrc was enabled by options but will not be built')
subdir_done()
endif