Skip to content

Commit

Permalink
Continue trying to get pleiades build working.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Smyth authored and Mike Smyth committed Feb 7, 2022
1 parent 77d6ed2 commit 77cd478
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion config/m4/ac_python_devel.m4
Original file line number Diff line number Diff line change
Expand Up @@ -341,9 +341,11 @@ $ac_numpy_result])
fi
pythondir=`$PYTHON -c "from distutils.sysconfig import *; print(get_python_lib(False,False,''))"`
platpythondir=`$PYTHON -c "from distutils.sysconfig import *; print(get_python_lib(True,False,''))"`
pythondir="\${prefix}/${pythondir}"
platpythondir="\${prefix}/${platpythondir}"
AC_SUBST([platpythondir])
fi
fi
AC_SUBST([pkgpythondir], [\${prefix}/\${pythondir}/$PACKAGE])
AC_SUBST([pkgpythondir], [\${pythondir}/$PACKAGE])
AM_CONDITIONAL([BUILD_PYTHON_SWIG], [test "$build_python_swig" = "yes"])
])
4 changes: 3 additions & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -25145,10 +25145,12 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
fi
pythondir=`$PYTHON -c "from distutils.sysconfig import *; print(get_python_lib(False,False,''))"`
platpythondir=`$PYTHON -c "from distutils.sysconfig import *; print(get_python_lib(True,False,''))"`
pythondir="\${prefix}/${pythondir}"
platpythondir="\${prefix}/${platpythondir}"

fi
fi
pkgpythondir=\${prefix}/\${pythondir}/$PACKAGE
pkgpythondir=\${pythondir}/$PACKAGE

if test "$build_python_swig" = "yes"; then
BUILD_PYTHON_SWIG_TRUE=
Expand Down

0 comments on commit 77cd478

Please sign in to comment.