From 5d454da4cf4834cdb6444c9802a98113c31ddff6 Mon Sep 17 00:00:00 2001 From: Mark Petersen Date: Tue, 2 Jan 2024 12:22:00 -0600 Subject: [PATCH 1/2] Add missing endif to MPAS standalone Makefile --- components/mpas-framework/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/components/mpas-framework/Makefile b/components/mpas-framework/Makefile index 73be4da9eaac..8bfb7a817a30 100644 --- a/components/mpas-framework/Makefile +++ b/components/mpas-framework/Makefile @@ -628,6 +628,7 @@ endif ifeq "$(USE_SHTNS)" "true" override CPPFLAGS += -DUSE_SHTNS +endif ifneq "$(MOAB_PATH)" "" CPPINCLUDES += -DHAVE_MOAB -I$(MOAB_PATH)/include From 1496cabcea373761661159860ac03c22b44e3b7a Mon Sep 17 00:00:00 2001 From: Mark Petersen Date: Tue, 2 Jan 2024 12:24:33 -0600 Subject: [PATCH 2/2] Remove corelist declaration from mpas.F, now in mpas_subdriver.F --- components/mpas-framework/src/driver/mpas.F | 1 - 1 file changed, 1 deletion(-) diff --git a/components/mpas-framework/src/driver/mpas.F b/components/mpas-framework/src/driver/mpas.F index f7c726d10787..66cfbfed30a4 100644 --- a/components/mpas-framework/src/driver/mpas.F +++ b/components/mpas-framework/src/driver/mpas.F @@ -12,7 +12,6 @@ program mpas implicit none - type (core_type), pointer :: corelist => null() type (domain_type), pointer :: domain => null() call mpas_init(corelist, domain)