From b3dd24f4a845030ddda783a801336d1a7c288e32 Mon Sep 17 00:00:00 2001 From: Chandan Paul Date: Mon, 4 Nov 2024 14:06:33 -0500 Subject: [PATCH] FDS Build: set clean-fds to true if clean-hypre and clean-sundials specified. --- Build/Scripts/build_thirdparty_libs.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Build/Scripts/build_thirdparty_libs.sh b/Build/Scripts/build_thirdparty_libs.sh index 3a8e6c4aae8..bf30aee8a37 100755 --- a/Build/Scripts/build_thirdparty_libs.sh +++ b/Build/Scripts/build_thirdparty_libs.sh @@ -26,10 +26,12 @@ while [[ $# -gt 0 ]]; do shift ;; --clean-hypre) + clean_fds=true clean_hypre=true # Set the flag to true when --clean-hypre is used shift ;; --clean-sundials) + clean_fds=true clean_sundials=true shift ;;