Skip to content

Commit 94f6fe7

Browse files
authored
pnetcdf debug: Fix print statements
1 parent b401835 commit 94f6fe7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
--- m4/check_fortran.m4.orig 2024-03-20 21:50:35
2-
+++ m4/check_fortran.m4 2025-12-02 11:34:26
2+
+++ m4/check_fortran.m4 2025-12-02 12:16:12
33
@@ -495,12 +495,16 @@
44
}
55
EOF
66
doit='$CC -c ${CPPFLAGS} ${CFLAGS} conftest.c'
7-
+ AC_MSG_CHECKING( / compile conftest.c / )
7+
+ dnl AC_MSG_CHECKING( / compile conftest.c / )
88
if AC_TRY_EVAL(doit); then
99
doit='$FC ${FFLAGS} -c conftestf.f'
10-
+ AC_MSG_CHECKING( / compile conftestf.f / )
10+
+ dnl AC_MSG_CHECKING( / compile conftestf.f / )
1111
if AC_TRY_EVAL(doit); then
1212
doit='$FC -o conftest ${FFLAGS} ${FLDFLAGS} conftestf.o conftest.o ${LDFLAGS} ${LIBS}'
13-
+ AC_MSG_CHECKING( / link stage using \$FC / )
13+
+ dnl AC_MSG_CHECKING( / link stage using \$FC / )
1414
if AC_TRY_EVAL(doit); then
1515
doit=./conftest
16-
+ AC_MSG_CHECKING( / running ./conftest / )
16+
+ dnl AC_MSG_CHECKING( / running ./conftest / )
1717
if AC_TRY_EVAL(doit); then
1818
dnl AC_MSG_RESULT(yes)
1919
AC_MSG_RESULT(["$ctype" in C])

0 commit comments

Comments
 (0)