From d67553d12fc72c4a89fcb75400829b62d53ca064 Mon Sep 17 00:00:00 2001 From: Ebrahim Byagowi Date: Thu, 4 Jun 2020 12:31:57 +0430 Subject: [PATCH] [meson] fix with_libstdcxx effect oops --- src/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meson.build b/src/meson.build index 738cab8af..95ec81f92 100644 --- a/src/meson.build +++ b/src/meson.build @@ -355,7 +355,7 @@ if have_icu and have_icu_builtin deps += [icu_dep] endif -if not get_option('with_libstdcxx') +if get_option('with_libstdcxx') chosen_linker = 'cpp' else # Use a C linker, not C++; Don't link to libstdc++