diff options
author | Ville Syrjälä <ville.syrjala@linux.intel.com> | 2018-10-22 16:43:57 +0300 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2018-10-22 14:47:50 +0100 |
commit | 74e1c0135133a515e016e63c46c2552bfa3126a8 (patch) | |
tree | a4ff924d0ae7394694de2f5f6f37fd23179806dc /src/meson.build | |
parent | f146dc06ce32df9c2f9b46691e968c7e1bcaeb52 (diff) |
meson: s/debug/internal-debug/
'debug' is a reserved option name since meson 0.48. So we
must rename our own debug option to something else. Let's
go with 'internal-debug'.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/meson.build')
-rw-r--r-- | src/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/meson.build b/src/meson.build index c038ba3e..0a46e233 100644 --- a/src/meson.build +++ b/src/meson.build @@ -68,7 +68,7 @@ if with_backlight_helper config.set('USE_BACKLIGHT_HELPER', 1) endif -debug = get_option('debug') +debug = get_option('internal-debug') if debug == 'sync' config.set('DEBUG_SYNC', 1) endif |