[Dart-dev] DART/branches Revision: 11805
dart at ucar.edu
dart at ucar.edu
Fri Jul 7 11:37:33 MDT 2017
nancy at ucar.edu
2017-07-07 11:37:29 -0600 (Fri, 07 Jul 2017)
126
fix what looks like a bad merge - there were 2 default
cases, one with an inconsistent syntax that threw an
immediate error.
Modified: DART/branches/rma_trunk/models/buildall.csh
===================================================================
--- DART/branches/rma_trunk/models/buildall.csh 2017-07-07 17:29:56 UTC (rev 11804)
+++ DART/branches/rma_trunk/models/buildall.csh 2017-07-07 17:37:29 UTC (rev 11805)
@@ -20,8 +20,6 @@
set usingmpi=default
else if ( "$argv[1]" == "-nompi" ) then
set usingmpi=no
- else if ("$argv[1]" == "-default") then
- setenv usingmpi -1
else
echo "Unrecognized argument to $0: $argv[1]"
echo "Usage: $0 [ -mpi | -nompi | -default ]"
@@ -42,9 +40,6 @@
else if ( "$usingmpi" == "no" ) then
echo "Will NOT be building with MPI enabled"
set QUICKBUILD_ARG='-nompi'
-else if ( $usingmpi == -1 ) then
- echo "Will be building with the default MPI settings"
- setenv QUICKBUILD_ARG ''
else
echo "Internal error: unrecognized value of usingmpi; should not happen"
exit -1
More information about the Dart-dev
mailing list