Skip to content
GitLab
Explore
Sign in
Register
This is an archived project. Repository and other project resources are read-only.
Commits on Source (1)
STYLE: catch none/false for build prefix
· 423540be
Mark OLESEN
authored
Dec 18, 2023
423540be
Hide whitespace changes
Inline
Side-by-side
Allwmake
View file @
423540be
...
...
@@ -7,11 +7,11 @@ cd "${0%/*}" || exit # Run from this directory
#------------------------------------------------------------------------------
moduleName
=
"cfmesh"
if
[
"
$FOAM_MODULE_PREFIX
"
=
false
]
then
echo
"Compilation of
$moduleName
is disabled (prefix=
false
)"
case
"
$FOAM_MODULE_PREFIX
"
in
(
false
|
none
)
echo
"Compilation of
$moduleName
is disabled (prefix=
${
FOAM_MODULE_PREFIX
}
)"
exit
0
fi
esac
# Disable use of openmp...
unset
without_openmp
...
...