Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/gst-plugins-good.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2020-07-10 23:43:14 +0300
committerTim-Philipp Müller <tim@centricular.com>2020-07-10 23:43:14 +0300
commit5a7275220bd18cb60b8f91ccadf919554de68383 (patch)
treed0a60f9e9bfb2301499821639efa2ea08a0dfe41 /sys
parent3b0437e58d69db98513dcf8f85c50f7a1813b18a (diff)
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>
Diffstat (limited to 'sys')
-rw-r--r--sys/rpicamsrc/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/rpicamsrc/meson.build b/sys/rpicamsrc/meson.build
index 2cc9e7c5c..56cabc14f 100644
--- a/sys/rpicamsrc/meson.build
+++ b/sys/rpicamsrc/meson.build
@@ -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