Fix default subproject options syntax

migrate-to-meson-build
nirenjan 2024-06-13 20:49:48 -07:00
parent 2804236be0
commit a8c18411a1
1 changed files with 2 additions and 2 deletions

View File

@ -101,9 +101,9 @@ version_info_h = configure_file(
####################################################################### #######################################################################
# pinelog # pinelog
pinelog_options = {} pinelog_options = []
if dep_systemd.found() and not get_option('disable-systemd') if dep_systemd.found() and not get_option('disable-systemd')
pinelog_options = {'show-date': false} pinelog_options = ['show-date=false']
endif endif
sub_pinelog = subproject('pinelog', required: true, sub_pinelog = subproject('pinelog', required: true,