Commit 95ece8a6 authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

consistently use $(PYTHON) in the master makefile (which defaults to "python")

parent b7b1257b
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -343,10 +343,10 @@ no-%:
lib-%:
	@if [ -e ../lib/$(LIBDIR)/Install.py ]; then \
	  echo "Installing lib $(@:lib-%=%)"; \
	  cd ../lib/$(LIBDIR); python Install.py $(args); \
	  cd ../lib/$(LIBDIR); $(PYTHON) Install.py $(args); \
	elif [ -e ../lib/$(LIBUSERDIR)/Install.py ]; then \
	  echo "Installing lib $(@:lib-user-%=%)"; \
	  cd ../lib/$(LIBUSERDIR); python Install.py $(args); \
	  cd ../lib/$(LIBUSERDIR); $(PYTHON) Install.py $(args); \
	else \
	  echo "Install script for lib $(@:lib-%=%) does not exist"; \
	fi;