From 8d1f32641cea33bd53a59d33db6a2ce61eed000f Mon Sep 17 00:00:00 2001 From: Mark Olesen Date: Tue, 19 May 2020 10:24:46 +0200 Subject: [PATCH] CONFIG: ignore possible compilation errors in modules - now treating as an optional component --- Allwmake | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Allwmake b/Allwmake index 8a42e1341a..d2ff4dc17d 100755 --- a/Allwmake +++ b/Allwmake @@ -77,7 +77,12 @@ if [ -d "$WM_PROJECT_DIR/modules" ] then echo "========================================" echo "Compile OpenFOAM modules" + echo " ignoring possible compilation errors" + echo " make certain to check the output file" echo + set +e + export WM_CONTINUE_ON_ERROR=true + (cd "$WM_PROJECT_DIR/modules" 2>/dev/null && wmake -all) fi