mirror of
https://github.com/rkd77/elinks.git
synced 2025-01-03 14:57:44 -05:00
[meson] Search for libbz2 also in /usr/local/lib
This commit is contained in:
parent
60942b3419
commit
aaced859ee
@ -363,7 +363,7 @@ endif
|
||||
if conf_data.get('CONFIG_BZIP2')
|
||||
bz2deps = dependency('bzip2', static: st, required: false)
|
||||
if not bz2deps.found()
|
||||
bz2deps = compiler.find_library('bz2', static: st)
|
||||
bz2deps = compiler.find_library('bz2', static: st, dirs: ['/usr/local/lib'])
|
||||
endif
|
||||
deps += bz2deps
|
||||
endif
|
||||
|
Loading…
Reference in New Issue
Block a user