Skip to content
Snippets Groups Projects
Commit 5fa18d16 authored by Chris Cantwell's avatar Chris Cantwell
Browse files

Fix missing dependency on openmpi-bin for DEB packages.

parent f43d3276
No related branches found
No related tags found
No related merge requests found
......@@ -54,6 +54,8 @@ if (NEKTAR_BUILD_UTILITIES)
endif()
if (NEKTAR_BUILD_LIBRARY AND DPKG)
set(NEK_DEP "openmpi-bin")
### DEBIAN PACKAGES ############################################
# Note that the formatting of the DESCRIPTION field is VERY specific. It
# must start with a new line, each line must start with a space, and there
......@@ -65,8 +67,9 @@ if (NEKTAR_BUILD_LIBRARY AND DPKG)
DESCRIPTION "
This library provides core routines including linear algebra and integration
with ThirdParty libraries."
DEPENDS "${NEK_DEP}"
INSTALL_LIBS "${libnektar++-utilities_LIBS}")
set(NEK_DEP "libnektar++-utilities (= ${NEKTAR_VERSION})")
set(NEK_DEP "${NEK_DEP}, libnektar++-utilities (= ${NEKTAR_VERSION})")
add_nektar_package(
NAME libnektar++-stdregions
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment