diff options
author | Andrei Pavel <andrei.pavel@mail.com> | 2021-09-07 09:10:00 +0200 |
---|---|---|
committer | Andrei Pavel <andrei@isc.org> | 2021-09-14 10:27:25 +0200 |
commit | 67bcba4c42dbc0119c034f868663fe43e7cb2408 (patch) | |
tree | 72065bf5836d405d340ae8e1c4d8ade4aa5ef01c /hammer.py | |
parent | [#2049] AX_FIND_LIBRARY: add libdir to rpath (diff) | |
download | kea-67bcba4c42dbc0119c034f868663fe43e7cb2408.tar.xz kea-67bcba4c42dbc0119c034f868663fe43e7cb2408.zip |
[#2049] some fixes for NETCONF build
Diffstat (limited to 'hammer.py')
-rwxr-xr-x | hammer.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1057,7 +1057,7 @@ def _install_sysrepo_from_sources(): execute('git clone https://github.com/sysrepo/sysrepo.git /tmp/sysrepo') execute('git checkout v%s' % sysrepo_version, cwd='/tmp/sysrepo') execute('mkdir /tmp/sysrepo/build') - execute('cmake .. -DGEN_CPP_BINDINGS=ON -DGEN_LANGUAGE_BINDINGS=ON -DGEN_PYTHON_BINDINGS=OFF', cwd='/tmp/sysrepo/build') + execute('cmake .. -DGEN_CPP_BINDINGS=ON -DGEN_LANGUAGE_BINDINGS=ON -DGEN_PYTHON_BINDINGS=OFF -DREPO_PATH=/etc/sysrepo', cwd='/tmp/sysrepo/build') execute('make -j $(nproc || gnproc || echo 1)', cwd='/tmp/sysrepo/build') execute('sudo make install', cwd='/tmp/sysrepo/build') finally: |