From dfd1c4f40305b30f9cbdc96e117902fdc77725ef Mon Sep 17 00:00:00 2001 From: Anthony Islas Date: Fri, 10 May 2024 12:00:50 -0700 Subject: [PATCH] Switch default to no --- arch/configure_reader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/configure_reader.py b/arch/configure_reader.py index 69f71aa..105485d 100755 --- a/arch/configure_reader.py +++ b/arch/configure_reader.py @@ -588,7 +588,7 @@ def projectSpecificOptions( options, stanzaCfg ) : # togglable # we can safely check this since the user would not have been able to select this stanza if it couldn't be disabled if stanzaCfg.dmCompilersAvailable() : - useMPI = not( input( "[DM] Use MPI? Default [Y] [Y/n] : " ).lower() in noValues ) + useMPI = not( input( "[DM] Use MPI? Default [N] [y/N] : " ).lower() in yesValues ) else : useMPI = False else: -- 2.11.4.GIT