From e09bbe6fc88785c341162c1ed92df43466bcb63c Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=98yvind=20Kol=C3=A5s?= Date: Tue, 6 Aug 2019 13:46:35 +0200 Subject: [PATCH] meson: stop overriding libdir Let meson do it's defaults, this mean we get installed in prefix/lib/x86_64-linux-gnu/ instead of prefix/lib/ apparently which apparently is better - but different from what autotools used to do; and leads to other paths also needing potential adjustment. --- meson.build | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 887e288..9cf4f8a 100644 --- a/meson.build +++ b/meson.build @@ -3,7 +3,6 @@ project('babl', 'c', version: '0.1.71', meson_version: '>=0.49.0', default_options: [ - 'libdir=lib', 'sysconfdir=/etc', 'localstatedir=/var', 'sharedstatedir=/var/lib' @@ -365,7 +364,7 @@ pkgconfig.generate(filebase: 'babl', description: 'Dynamic, any to any, pixel format conversion library', version: meson.project_version(), libraries: [ - '-L${libdir}', + '-L${babl_libdir}', '-l' + lib_name, ], libraries_private: [ -- 2.30.2