ENH: improve foamConfigurePaths, remove some antiquated tools

- add edit of llvm/mesa/vtk paths. Reduce some verbosity

- include Darwin in foamInstallationTest, foamSystemCheck to avoid
  a false negative.
This commit is contained in:
Mark Olesen
2020-04-08 09:34:43 +02:00
parent 5f90964dee
commit 3fd91c9084
12 changed files with 225 additions and 187 deletions

View File

@ -7,7 +7,7 @@
# \\/ M anipulation |
#------------------------------------------------------------------------------
# Copyright (C) 2011-2015 OpenFOAM Foundation
# Copyright (C) 2019 OpenCFD Ltd.
# Copyright (C) 2019-2020 OpenCFD Ltd.
#------------------------------------------------------------------------------
# License
# This file is part of OpenFOAM.
@ -354,13 +354,13 @@ checkHostName()
checkOS()
{
case "$OSTYPE" in
Linux | LinuxAMD64 | SunOS )
Linux* | Darwin* | SunOS )
echo "$(fixlen OS: $WIDTH) $OSTYPE version $(uname -r)"
;;
*)
echo "FATAL ERROR: Incompatible operating system \"$OSTYPE\"."
echo " OpenFOAM ${FWM_PROJECT_VERSION} is currently "
echo " available for Linux and SunOS only."
echo " available for Linux, Darwin and SunOS only."
echo
fatalError="x${fatalError}"
;;