You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By now, I use the following patch to work around this:
diff --git a/python/regina/CMakeLists.txt b/python/regina/CMakeLists.txt
index 1d86fa74c..5263f984a 100644
--- a/python/regina/CMakeLists.txt+++ b/python/regina/CMakeLists.txt@@ -42,7 +42,7 @@ IF (${REGINA_INSTALL_TYPE} STREQUAL XDG)
# Install the module in python's standard site-packages location.
# However, we do it directly ourselves (not via distutils), since we
# want the files to show up in cmake's install_manifest.txt.
- SET(MODULEDIR $ENV{DESTDIR}${Python_SITELIB}/regina)+ SET(MODULEDIR ${CMAKE_INSTALL_PREFIX}/${Python_SITELIB}/regina)
ELSE (${REGINA_INSTALL_TYPE} STREQUAL XDG)
# Install the module directly ourselves.
SET(MODULEDIR "${PYLIBDIR}/regina")
when "just" setting
CMAKE_INSTALL_PREFIX
when invoking cmake, installation of regina-python fails withwhen it should actually install into
$CMAKE_INSTALL_PREFIX/lib/python3.12/site-packages/regina
...(
REGINA_INSTALL_TYPE
is set to XDG, butDESTDIR
is unset)The text was updated successfully, but these errors were encountered: