Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ build
control
dist
setup.py
.vscode/
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,15 @@ VERSION=3.4.2
BUILD=1

PYTHON=$(shell which python2.7 || which python27 || which python2.6 || which python26 || which python)

# Check if Python is found
ifeq ($(PYTHON),)
$(error Python 2.x needed but no python found at all)
else
PYTHON_VERSION=$(shell ${PYTHON} -c "from distutils.sysconfig import get_python_version; print(get_python_version())")
$(info python: $(PYTHON) $(PYTHON_VERSION))
endif


prefix=/usr/local
bindir=${prefix}/bin
Expand Down
Empty file modified bootstrap.sh
100644 → 100755
Empty file.
Empty file modified tests.sh
100644 → 100755
Empty file.