From 4a6857fb480b2dc11d1f05189540c48b7d2b7874 Mon Sep 17 00:00:00 2001 From: Abishek Gopal Date: Tue, 30 Dec 2025 10:36:10 -0700 Subject: [PATCH] Fix to esmf_time_f90 include path in the root chemistry Makefile This commit fixes the incorrect path for the esmf_time_f90 external modules in the root chemistry Makefile. This issue only came to known when building with the nvhpc compiler. --- src/core_atmosphere/chemistry/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core_atmosphere/chemistry/Makefile b/src/core_atmosphere/chemistry/Makefile index 5bd4480b7d..6293e231a8 100644 --- a/src/core_atmosphere/chemistry/Makefile +++ b/src/core_atmosphere/chemistry/Makefile @@ -41,7 +41,7 @@ clean: $(RM) $@ $*.mod ifeq "$(GEN_F90)" "true" $(CPP) $(CPPFLAGS) $(CPPINCLUDES) $< > $*.f90 - $(FC) $(FFLAGS) -c $*.f90 $(FCINCLUDES) -I./musica -I.. -I../../framework -I../../../external/esmf_time_f90 + $(FC) $(FFLAGS) -c $*.f90 $(FCINCLUDES) -I./musica -I.. -I../../framework -I../../external/esmf_time_f90 else - $(FC) $(CPPFLAGS) $(FFLAGS) -c $*.F $(CPPINCLUDES) $(FCINCLUDES) -I./musica -I.. -I../../framework -I../../../external/esmf_time_f90 + $(FC) $(CPPFLAGS) $(FFLAGS) -c $*.F $(CPPINCLUDES) $(FCINCLUDES) -I./musica -I.. -I../../framework -I../../external/esmf_time_f90 endif