From: Andrei Pavel Date: Mon, 9 Aug 2021 11:23:35 +0000 (+0300) Subject: [#1993] hammer.py: support for NETCONF X-Git-Tag: Kea-1.9.11~131 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b069c57e3fa89ce30c00c4feca8d978b04b7a12f;p=thirdparty%2Fkea.git [#1993] hammer.py: support for NETCONF installs libyang and sysrepo --- diff --git a/hammer.py b/hammer.py index c3ceb2dec1..34edf07f22 100755 --- a/hammer.py +++ b/hammer.py @@ -1571,7 +1571,7 @@ def prepare_system_local(features, check_times): if 'netconf' in features: if int(revision) <= 10: - packages.append(['cmake', 'libpcre3-dev']) + packages.extend(['cmake', 'libpcre3-dev']) deferred_functions.extend([ _install_libyang_from_sources, _install_sysrepo_from_sources, @@ -1706,7 +1706,7 @@ def prepare_system_local(features, check_times): # libyang-cpp-dev which results in this error when building sysrepo: # "Required libyang C++ bindings not found!" # So until it is added, install libyang from sources. - packages.append('cmake') + packages.extend(['cmake', 'pcre-dev']) deferred_functions.extend([ _install_libyang_from_sources, _install_sysrepo_from_sources,