mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
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:
parent
3b0437e58d
commit
5a7275220b
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue