diff options
author | hut <hut@lavabit.com> | 2013-01-28 23:48:56 +0100 |
---|---|---|
committer | hut <hut@lavabit.com> | 2013-01-28 23:48:56 +0100 |
commit | 3aa53556c3486c234edba7e4bc388d2c5ed29ccc (patch) | |
tree | a14b10ad4927fa10457e34765a7c7f7fe2574210 | |
parent | c6afc196a7f02d8a6f37b582e40fe443519b0fb3 (diff) | |
download | ranger-3aa53556c3486c234edba7e4bc388d2c5ed29ccc.tar.gz |
Makefile: Add python3.3 to the list of python versions
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile index aa458978..a88a001f 100644 --- a/Makefile +++ b/Makefile @@ -6,8 +6,8 @@ VERSION = $(shell grep -m 1 -o '[0-9][0-9.]\+' README) SNAPSHOT_NAME ?= $(NAME)-$(VERSION)-$(shell git rev-parse HEAD | cut -b 1-8).tar.gz # Find suitable python version (need python >= 2.6 or 3.1): PYTHON ?= $(shell python -c 'import sys; sys.exit(sys.version < "2.6")' && \ - which python || which python3.2 || which python3.1 || which python3 || \ - which python2.7 || which python2.6) + which python || which python3.3 || which python3.2 || which python3.1 || \ + which python3 || which python2.7 || which python2.6) SETUPOPTS ?= '--record=install_log.txt' DOCDIR ?= doc/pydoc DESTDIR ?= / |