From 2a3e230105840cbadfa2f447d80d76652b7586c8 Mon Sep 17 00:00:00 2001 From: Jesse Lentz Date: Tue, 22 Oct 2024 11:14:16 -0400 Subject: [PATCH] Fix syntax error in column_diagnostics test Fix a duplicate `-I` in the `column_diagnostics` test's `Makefile.am` file. --- test_fms/column_diagnostics/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test_fms/column_diagnostics/Makefile.am b/test_fms/column_diagnostics/Makefile.am index 8c9f9b6d5a..d8fb204ff5 100644 --- a/test_fms/column_diagnostics/Makefile.am +++ b/test_fms/column_diagnostics/Makefile.am @@ -34,8 +34,8 @@ check_PROGRAMS = test_column_diagnostics_r4 test_column_diagnostics_r8 test_column_diagnostics_r4_SOURCES = test_column_diagnostics.F90 test_column_diagnostics_r8_SOURCES = test_column_diagnostics.F90 -test_column_diagnostics_r4_CPPFLAGS=-DTEST_CD_KIND_=4 -I$(AM_CPPFLAGS) -test_column_diagnostics_r8_CPPFLAGS=-DTEST_CD_KIND_=8 -I$(AM_CPPFLAGS) +test_column_diagnostics_r4_CPPFLAGS=$(AM_CPPFLAGS) -DTEST_CD_KIND_=4 +test_column_diagnostics_r8_CPPFLAGS=$(AM_CPPFLAGS) -DTEST_CD_KIND_=8 TEST_EXTENSIONS = .sh SH_LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) $(abs_top_srcdir)/test_fms/tap-driver.sh