From 47f9e1cceaae81f0969372cac928e2282be59930 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Sat, 17 Apr 2021 11:39:08 +0200 Subject: [PATCH] build: remove dirs from iniparser find_library() call The docs say: > By default the library is searched for in the system library directory (e.g. > /usr/lib). So it should already do the right thing. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index c9865d8..d647fd4 100644 --- a/meson.build +++ b/meson.build @@ -26,7 +26,7 @@ rt = cc.find_library('rt') pipewire = dependency('libpipewire-0.3', version: '>= 0.3.2') wayland_client = dependency('wayland-client') wayland_protos = dependency('wayland-protocols', version: '>=1.14') -iniparser = cc.find_library('iniparser', dirs: [join_paths(get_option('prefix'),get_option('libdir'))]) +iniparser = cc.find_library('iniparser') epoll = dependency('', required: false) if (not cc.has_function('timerfd_create', prefix: '#include ') or