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
· 1e788ad6
Mark OLESEN
authored
Dec 18, 2023
1e788ad6
Hide whitespace changes
Inline
Side-by-side
Allwmake
View file @
1e788ad6
...
...
@@ -8,11 +8,11 @@ targetType=libso
#------------------------------------------------------------------------------
moduleName
=
"visualization"
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
echo
"========================================"
date
"+%Y-%m-%d %H:%M:%S %z"
2>/dev/null
||
echo
"date is unknown"
...
...