From 63fb85d50ca6bdf1efab24a6f0675543ad68c9bb Mon Sep 17 00:00:00 2001 From: Daniel Engberg Date: Thu, 7 Aug 2025 19:44:04 +0200 Subject: [PATCH] meson: Do not set install_dir This overrides Meson defaults and breaks on some systems such as FreeBSD as paths gets incorrect --- bstring/meson.build | 1 - 1 file changed, 1 deletion(-) diff --git a/bstring/meson.build b/bstring/meson.build index 547f967..ed59b36 100644 --- a/bstring/meson.build +++ b/bstring/meson.build @@ -7,7 +7,6 @@ libbstring = library( soversion: '1', include_directories: bstring_inc, install: true, - install_dir: get_option('libdir'), ) bstring_dep = declare_dependency(include_directories: bstring_inc, link_with: libbstring)