Patch contributed by Bruno Santos Resolved bug-report http://www.openfoam.org/mantisbt/view.php?id=2042
13 lines
326 B
Bash
Executable file
13 lines
326 B
Bash
Executable file
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # Run from this directory
|
|
|
|
# Parse arguments for compilation (at least for error catching)
|
|
. $WM_PROJECT_DIR/wmake/scripts/AllwmakeParseArguments
|
|
set -x
|
|
|
|
if [ -d "${FASTDUALOCTREE_SRC_PATH}" ]
|
|
then
|
|
wmake
|
|
fi
|
|
|
|
#------------------------------------------------------------------------------
|