Skip to content

Commit

Permalink
Merge pull request facebook#2775 from eli-schwartz/meson
Browse files Browse the repository at this point in the history
meson: fix type error for integer option
  • Loading branch information
Cyan4973 committed Sep 10, 2021
2 parents d68aa19 + 193aa49 commit c10067c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/meson/meson_options.txt
Expand Up @@ -10,7 +10,7 @@

# Read guidelines from https://wiki.gnome.org/Initiatives/GnomeGoals/MesonPorting

option('legacy_level', type: 'integer', min: 0, max: 7, value: '5',
option('legacy_level', type: 'integer', min: 0, max: 7, value: 5,
description: 'Support any legacy format: 7 to 1 for v0.7+ to v0.1+')
option('debug_level', type: 'integer', min: 0, max: 9, value: 1,
description: 'Enable run-time debug. See lib/common/debug.h')
Expand Down

0 comments on commit c10067c

Please sign in to comment.