Skip to content
Snippets Groups Projects
Commit 423540be authored by Mark OLESEN's avatar Mark OLESEN
Browse files

STYLE: catch none/false for build prefix

parent c0af2297
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment