Skip to content
Snippets Groups Projects
Commit f8a36d59 authored by Simon Praetorius's avatar Simon Praetorius
Browse files

Merge branch 'feature/dunecontrol-determine-install-without-pkgconf' into 'master'

[dunecontrol] Module without CMakeLists.txt next to dune.module is installed

Closes #399

See merge request !1474
parents c8801253 c005e09b
No related branches found
No related tags found
1 merge request!1474[dunecontrol] Module without CMakeLists.txt next to dune.module is installed
Pipeline #75973 waiting for manual action
......@@ -99,6 +99,12 @@ parse_control() {
module_inst="yes"
fi
fi
# Mark modules as installed if there is no CMakeLists.txt in path
# Not that path is where the dune.module file is located.
if test "$module_inst" = "no" && ! test -e "$path/CMakeLists.txt"; then
module_inst="yes"
fi
# avoid multiple definition of the same module
if eval test "x\$HAVE_$module" != "x"; then
# make sure we don't stumble over the same module twice
......
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