Skip to content

Commit 3f2465b

Browse files
authored
Suppress MYNN-EDMF verify checkout command (#2188)
TYPE: bug fix KEYWORDS: make, verbose SOURCE: internal DESCRIPTION OF CHANGES: Problem: The MYNN-EDMF checkout status check commands in the make build were being output all the time regardless of status causing the `echo` error line to be verbosely printed out along with the actual status. Solution: Suppress the verbose output of the subshell command using the make command prefix `@` TESTS CONDUCTED: 1. Recompilation with the change no longer produces unwanted output
1 parent 9d763af commit 3f2465b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ wrf : framework_only
124124
echo "NoahMP submodule files populating WRF directories" ; \
125125
echo "------------------------------------------------------------------------------" ; \
126126
fi
127-
if [ \( ! -f phys/module_bl_mynnedmf.F \) -o \
127+
@if [ \( ! -f phys/module_bl_mynnedmf.F \) -o \
128128
\( ! -f phys/module_bl_mynnedmf_common.F \) -o \
129129
\( ! -f phys/module_bl_mynnedmf_common.F \) ] ; then \
130130
echo " " ; \

0 commit comments

Comments
 (0)