Skip to content

Commit

Permalink
configure.ac: disable tzdata with --disable-r
Browse files Browse the repository at this point in the history
The tzdata package is only needed by pytz_deprecation_shim, which is
already disabled when --disable-r is used.
  • Loading branch information
orlitzky committed Feb 4, 2024
1 parent 3dd953c commit 0165473
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ AC_ARG_ENABLE([notebook],
AC_ARG_ENABLE([r],
AS_HELP_STRING([--disable-r],
[disable build of the R package and related packages]), [
for pkg in r rpy2 r_jupyter tzlocal pytz_deprecation_shim; do
for pkg in r rpy2 r_jupyter tzlocal pytz_deprecation_shim tzdata; do
AS_VAR_SET([SAGE_ENABLE_$pkg], [$enableval])
done
])
Expand Down

0 comments on commit 0165473

Please sign in to comment.