We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0718de commit 340ae3dCopy full SHA for 340ae3d
2 files changed
configure.ac
@@ -183,9 +183,9 @@ if test $healpix_static = yes; then
183
healpix_python=no
184
fi
185
if test $healpix_python = yes; then
186
- AX_PYTHON
+ AM_PATH_PYTHON
187
188
-if test x$PYTHON_BIN = x; then
+if test x$PYTHON = x; then
189
190
191
AC_LANG_POP([C])
src/healpy/Makefile.am
@@ -27,7 +27,8 @@ setup.py : $(srcdir)/setup.py.in $(srcdir)/setup.cfg.in $(srcdir)/gen_setup.sh
27
# Actually run the setup.py script, at "make install" time
28
29
install-exec-hook :
30
- @$(PYTHON_BIN) setup.py install
+ mkdir -p "$(pythondir)"
31
+ @$(PYTHON) setup.py install
32
33
clean-local :
34
rm -rf build dist healpy.egg-info
0 commit comments