mirror of
https://github.com/hyprwm/xdg-desktop-portal-hyprland.git
synced 2024-11-05 16:25:59 +01:00
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.
This commit is contained in:
parent
d1328e2f4b
commit
47f9e1ccea
1 changed files with 1 additions and 1 deletions
|
@ -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 <sys/timerfd.h>') or
|
||||
|
|
Loading…
Reference in a new issue