Skip to content

Commit c327272

Browse files
committed
the dependency list for openssl shouldnt be called openssl because it will be filtered out if openssl is installed (but its dependencies are not)
1 parent 1ca2521 commit c327272

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bootstrap/package_manager.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ def install(self, dependencies: Dict[str, Set[str]]) -> bool:
212212
"libusb": set(),
213213
"make": set(),
214214
"jni": {"openjdk", "maven"},
215-
"openssl": {"strawberryperl", "NASM"}})
215+
"perl": {"strawberryperl", "NASM"}})
216216
return True
217217

218218
def _get_installed_packages(self) -> Set[str]:

bootstrap/system_dependency.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def _create_system_dependencies(minifi_options: MinifiOptions) -> Dict[str, Set[
4444
if minifi_options.is_enabled("ENABLE_PYTHON_SCRIPTING"):
4545
system_dependencies['python'] = {'python'}
4646
if minifi_options.is_enabled("MINIFI_OPENSSL"):
47-
system_dependencies['openssl'] = {'perl'}
47+
system_dependencies['perl'] = {'perl'}
4848
if minifi_options.is_enabled("ENABLE_JNI"):
4949
system_dependencies['jni'] = {'openjdk'}
5050
system_dependencies['maven'] = {'maven'}

0 commit comments

Comments
 (0)