summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2022-07-21 17:27:55 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2022-07-21 17:35:55 -0700
commitab15984377b76c5815f1d28c7305f4b8177460aa (patch)
tree2d9ef263f9d1a4760831ceb7e0ff0b44e6d9aad2
parente4a47e664e41eaf207cf322e80a17789ad908e53 (diff)
meson_build: n_debug should be b_ndebug
Fixes build failure: meson.build:15:0: ERROR: Unknown options: "n_debug" Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index 09fb5e3..c759f31 100644
--- a/meson.build
+++ b/meson.build
@@ -17,7 +17,7 @@ project(
['c'],
version : '1.0',
meson_version : '>= 0.43',
- default_options : ['c_std=c99', 'buildtype=debugoptimized', 'n_debug=if-release']
+ default_options : ['c_std=c99', 'buildtype=debugoptimized', 'b_ndebug=if-release']
)
cc = meson.get_compiler('c')
@@ -68,4 +68,4 @@ executable(
install : true,
)
-install_man('xtsttopng.1') \ No newline at end of file
+install_man('xtsttopng.1')