Skip to content

Commit

Permalink
Replace AC_PYTHON_MODULE with AX_PYTHON_MODULE
Browse files Browse the repository at this point in the history
Fix typo in ncatted program name
  • Loading branch information
underwoo committed Nov 28, 2024
1 parent 385ca31 commit 9059da6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -152,11 +152,11 @@ AS_IF([test -z "$NCRCAT"],
[AC_MSG_ERROR([Cannot find ncrcat. Please ensure ncrcat is in PATH or set the environment variable NCRCAT to the full path to ncgen.])])

AC_ARG_VAR([NCATTED], [Path to ncatted])
AC_PATH_PROG(NCATTED, [ncatteda])
AC_PATH_PROG(NCATTED, [ncatted])
AS_IF([test -z "$NCATTED"],
[AC_MSG_ERROR([Cannot find ncatted. Please ensure ncatted is in PATH or set the environment variable NCATTED to the full path to ncgen.])])

AC_PYTHON_MODULE(xarray, [], python3)
AX_PYTHON_MODULE([xarray],[],[python3])
if test ${HAVE_PYMOD_XARRAY} = yes; then
AM_CONDITIONAL([SKIP_XARRAY_TESTS], false )
else
Expand Down

0 comments on commit 9059da6

Please sign in to comment.