Skip to content

Commit

Permalink
config: fix autoconf warning
Browse files Browse the repository at this point in the history
Fixes warning:

warning: back quotes and double quotes must not be escaped in ...
  • Loading branch information
hzhou committed May 13, 2021
1 parent 9ed091c commit 543796e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions confdb/aclocal_f77.m4
Original file line number Diff line number Diff line change
Expand Up @@ -1116,8 +1116,8 @@ if test "$pac_linkwithf77" != "yes" -a "$pac_linkwithC" != "yes" ; then
cobjtype="`${FILE} pac_conftest.$OBJEXT | sed -e \"s|pac_conftest\.$OBJEXT||g\"`"
if test "$fobjtype" != "$cobjtype" ; then
AC_MSG_ERROR([**** Incompatible Fortran and C Object File Types! ****
F77 Object File Type produced by \"${F77} ${FFLAGS}\" is : ${fobjtype}.
C Object File Type produced by \"${CC} ${CFLAGS}\" is : ${cobjtype}.])
F77 Object File Type produced by "${F77} ${FFLAGS}" is : ${fobjtype}.
C Object File Type produced by "${CC} ${CFLAGS}" is : ${cobjtype}.])
fi
fi
fi
Expand Down

0 comments on commit 543796e

Please sign in to comment.