aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Weißschuh <thomas@t-8ch.de>2024-04-07 11:15:29 +0200
committerThomas Weißschuh <thomas@t-8ch.de>2024-04-07 11:16:30 +0200
commitb1a76c226b276f49c6a7e74082a23f06f5b99966 (patch)
treedba666f5b7247a113209fdbd32969883cd8cc4c0
parent6f548300b2b823af0b2ae208e12ddfdeebe3e71d (diff)
downloadutil-linux-b1a76c226b276f49c6a7e74082a23f06f5b99966.tar.gz
meson: use signed chars
This matches what the autotools build is doing. Also see https://github.com/util-linux/util-linux/pull/2768 . Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de>
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 688ea91202..0e386dd1a9 100644
--- a/meson.build
+++ b/meson.build
@@ -39,7 +39,7 @@ bash_completion = dependency('bash-completion', required : get_option('build-bas
vendordir = get_option('vendordir')
-add_project_arguments('-D_GNU_SOURCE', language : 'c')
+add_project_arguments('-D_GNU_SOURCE', '-fsigned-char', language : 'c')
cc = meson.get_compiler('c')