[babl] meson: stop overriding libdir



commit e09bbe6fc88785c341162c1ed92df43466bcb63c
Author: Øyvind Kolås <pippin gimp org>
Date:   Tue Aug 6 13:46:35 2019 +0200

    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 887e2881e..9cf4f8abe 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: [


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]