2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-22 09:57:41 +00:00

[#3812] hammer.py: workaround for netconf rpath not working

This commit is contained in:
Andrei Pavel 2025-04-08 19:58:23 +03:00
parent c25e0f324c
commit 16e4e7db2e
No known key found for this signature in database
GPG Key ID: D4E804481939CB21

View File

@ -1793,6 +1793,10 @@ def install_packages_local(system, revision, features, check_times, ignore_error
if 'netconf' in features: if 'netconf' in features:
packages.extend(['cmake', 'git', 'pcre2-devel']) packages.extend(['cmake', 'git', 'pcre2-devel'])
# Even though meson sets rpath, it does not work in fedora.
# This is even more stupid since it's a fairly standard path that could have worked out of the box.
# Set it manually and persistently at a global level...
execute('echo /usr/local/lib64 | sudo tee /etc/ld.so.conf.d/netconf.conf')
if 'unittest' in features: if 'unittest' in features:
packages.append('wget') packages.append('wget')