Skip to content

Commit e60a791

Browse files
committed
Merge branch 'atmosphere/physics_mmm_build_fix' into develop (PR #1080)
This merge corrects parallel build failures in the atmosphere core by adding a missing dependency on core_physics_mmm in src/core_atmosphere/physics/Makefile. The core_physics_wrf build target should depend on core_physics_mmm, since compilation of modules in the physics_wrf directory depends on successful compilation of modules in the physics_mmm directory.
2 parents 89f7eaf + ebd499d commit e60a791

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/core_atmosphere/physics/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ lookup_tables:
5252
core_physics_mmm: core_physics_init
5353
(cd physics_mmm; $(MAKE) all)
5454

55-
core_physics_wrf: core_physics_init
55+
core_physics_wrf: core_physics_init core_physics_mmm
5656
(cd physics_wrf; $(MAKE) all COREDEF="$(COREDEF)")
5757

5858
core_physics_init: $(OBJS_init)

0 commit comments

Comments
 (0)