2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-22 01:49:48 +00:00

[#3698] Install gtest sources on FreeBSD

Fixes "checking for gtest source... configure: error: no gtest source at /usr/src/googletest".
This commit is contained in:
Andrei Pavel 2024-12-19 10:56:37 +02:00
parent 331e325d1f
commit 05707e6a70
No known key found for this signature in database
GPG Key ID: D4E804481939CB21

View File

@ -2016,7 +2016,7 @@ def install_packages_local(system, revision, features, check_times, ignore_error
packages.extend(['cmake', 'git', 'pcre2']) packages.extend(['cmake', 'git', 'pcre2'])
if 'unittest' in features: if 'unittest' in features:
packages.append('googletest') deferred_functions.append(_install_gtest_sources)
install_pkgs(packages, env=env, timeout=6 * 60, check_times=check_times) install_pkgs(packages, env=env, timeout=6 * 60, check_times=check_times)