Skip to content

Commit

Permalink
meson: Fix use of string value for a boolean option (#176)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryonakano authored Dec 29, 2024
1 parent 6a387c2 commit 6632322
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meson_options.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
option('busctlpath', type: 'string', value: '', description: 'custom path to busctl executable')
option('ubuntu_drivers', type: 'boolean', value: 'true', description: 'whether to enable ubuntu drivers integration')
option('ubuntu_drivers', type: 'boolean', value: true, description: 'whether to enable ubuntu drivers integration')
option('systemdsystemunitdir', type: 'string', value: '', description: 'custom directory for systemd system units, or \'no\' to disable')
option('systemduserunitdir', type: 'string', value: '', description: 'custom directory for systemd user units, or \'no\' to disable')

0 comments on commit 6632322

Please sign in to comment.