From df420fd2ee9e5aabdde3f751aa5e278ff4981416 Mon Sep 17 00:00:00 2001 From: Eric Kemp Date: Mon, 23 Oct 2023 13:06:15 -0400 Subject: [PATCH] Further clean-up of error messages for invalid LIS_ARCH env variable. --- lis/lib/lis-cmem3/Makefile | 2 +- lis/lib/lis-crtm-profile-utility/make.macros | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lis/lib/lis-cmem3/Makefile b/lis/lib/lis-cmem3/Makefile index 756ca37e5..71a75a7e8 100644 --- a/lis/lib/lis-cmem3/Makefile +++ b/lis/lib/lis-cmem3/Makefile @@ -7,7 +7,7 @@ else ifeq ($(LIS_ARCH),linux_gfortran) FC = gfortran LD = gfortran else -$(error "Please specify the compiler via the LIS_ARCH env variable. Only linux_ifc and linux_gfortran supported. See the LISF Installation Guide for more information.") +$(error "Please specify the compiler via the LIS_ARCH env variable. Only linux_ifc and linux_gfortran are supported. See the LISF Installation Guide for more information.") endif # compiler/linker flags diff --git a/lis/lib/lis-crtm-profile-utility/make.macros b/lis/lib/lis-crtm-profile-utility/make.macros index b35466570..5060b969e 100755 --- a/lis/lib/lis-crtm-profile-utility/make.macros +++ b/lis/lib/lis-crtm-profile-utility/make.macros @@ -519,5 +519,5 @@ LINUX_FLAGS = $(LINUX_FLAGS_INTEL) else ifeq ($(LIS_ARCH),linux_gfortran) LINUX_FLAGS = $(LINUX_FLAGS_GFORTRAN) else -$(error "Please specify the compiler via the LIS_ARCH env variable. See the LISF Installation Guide for more information.") +$(error "Please specify the compiler via the LIS_ARCH env variable. Only linux_ifc and linux_gfortran are supported. See the LISF Installation Guide for more information.") endif