From 7b51b86a0ce20cf1a2a0b41560d4957256a97851 Mon Sep 17 00:00:00 2001 From: Brandon Capener Date: Fri, 29 May 2026 10:28:59 -0700 Subject: [PATCH] build: remove default prefix option Hard coding the default prefix causes issues on windows. meson's docs says "prefix defaults to C:/ on Windows, and /usr/local otherwise. You should always override this value.". There is no value, only downside on Windows, to setting the value here. If the user want a different value it should be overridden via the command line. Signed-off-by: Brandon Capener --- meson.build | 1 - 1 file changed, 1 deletion(-) diff --git a/meson.build b/meson.build index 279486bfe5..e3e2a88f12 100644 --- a/meson.build +++ b/meson.build @@ -23,7 +23,6 @@ project( default_options: [ 'c_std=gnu99', 'buildtype=debugoptimized', - 'prefix=/usr/local', 'warning_level=1', 'sysconfdir=etc', 'wrap_mode=nofallback',