summaryrefslogtreecommitdiffstats
path: root/hammer.py
diff options
context:
space:
mode:
authorAndrei Pavel <andrei.pavel@mail.com>2021-09-07 09:10:00 +0200
committerAndrei Pavel <andrei@isc.org>2021-09-14 10:27:25 +0200
commit67bcba4c42dbc0119c034f868663fe43e7cb2408 (patch)
tree72065bf5836d405d340ae8e1c4d8ade4aa5ef01c /hammer.py
parent[#2049] AX_FIND_LIBRARY: add libdir to rpath (diff)
downloadkea-67bcba4c42dbc0119c034f868663fe43e7cb2408.tar.xz
kea-67bcba4c42dbc0119c034f868663fe43e7cb2408.zip
[#2049] some fixes for NETCONF build
Diffstat (limited to 'hammer.py')
-rwxr-xr-xhammer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/hammer.py b/hammer.py
index 108ba9d977..54be685195 100755
--- a/hammer.py
+++ b/hammer.py
@@ -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: