summaryrefslogtreecommitdiff
path: root/demos
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2022-12-14 16:24:48 +0000
committerMatthias Clasen <mclasen@redhat.com>2022-12-14 16:24:48 +0000
commita471a8b57ced2d10435ed512b66d93a0a3fe8848 (patch)
treeb0be71f909ec414f6277d8e2b72ef5610ef9dc0d /demos
parentb0f65ead84c1ecd5f40683503ca972c6e1a95b3c (diff)
parentcc546d7af1de99ba7011a60a8840c12b1c04cc28 (diff)
downloadgtk+-a471a8b57ced2d10435ed512b66d93a0a3fe8848.tar.gz
Merge branch 'ebassi/gidocgen-update' into 'main'
ci: Update the gi-docgen dependencies See merge request GNOME/gtk!5263
Diffstat (limited to 'demos')
-rw-r--r--demos/gtk-demo/meson.build2
-rw-r--r--demos/widget-factory/meson.build2
2 files changed, 2 insertions, 2 deletions
diff --git a/demos/gtk-demo/meson.build b/demos/gtk-demo/meson.build
index ef89fbc7d2..5537cf20a5 100644
--- a/demos/gtk-demo/meson.build
+++ b/demos/gtk-demo/meson.build
@@ -156,7 +156,7 @@ demos_h = custom_target('gtk4 demo header',
objcopy_supports_add_symbol = false
objcopy = find_program('objcopy', required : false)
if objcopy.found()
- objcopy_supports_add_symbol = run_command(objcopy, '--help').stdout().contains('--add-symbol')
+ objcopy_supports_add_symbol = run_command(objcopy, '--help', check: false).stdout().contains('--add-symbol')
endif
ld = find_program('ld', required : false)
diff --git a/demos/widget-factory/meson.build b/demos/widget-factory/meson.build
index 550eb09bd9..0513555a3f 100644
--- a/demos/widget-factory/meson.build
+++ b/demos/widget-factory/meson.build
@@ -3,7 +3,7 @@
objcopy_supports_add_symbol = false
objcopy = find_program('objcopy', required : false)
if objcopy.found()
- objcopy_supports_add_symbol = run_command(objcopy, '--help').stdout().contains('--add-symbol')
+ objcopy_supports_add_symbol = run_command(objcopy, '--help', check: false).stdout().contains('--add-symbol')
endif
ld = find_program('ld', required : false)