Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions build/pkgs/python3/spkg-configure.m4
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ SAGE_SPKG_CONFIGURE([python3], [
[AC_MSG_ERROR([building Sage --without-python is not supported])])
ac_path_PYTHON3="$with_python"

dnl If --with-python was explicitly specified, clear the cache to force re-checking
dnl This fixes issue #41258 where changing --with-python would use stale cached values
AS_IF([test x"$ac_path_PYTHON3" != x], [
AS_UNSET([ac_cv_path_PYTHON3])
])

dnl Issue #30559: Removed the DEPCHECK for sqlite. We never use libsqlite3 from SPKG for anything
dnl other than building the python3 SPKG; so our libsqlite3 cannot create shared library conflicts.
dnl
Expand Down
Loading