diff options
author | Igor Pashev <igor.pashev@nexenta.com> | 2013-04-15 02:07:50 +0400 |
---|---|---|
committer | Igor Pashev <igor.pashev@nexenta.com> | 2013-04-15 02:07:50 +0400 |
commit | af56b8035b1edee5f105b53b410e60551ba0a61d (patch) | |
tree | 80f2a81fe811a7353c0b45065543c76737657d9d /rules | |
parent | 31b72e925bedeaf4db2ade8bcd70e45f5047de17 (diff) | |
download | cibs-af56b8035b1edee5f105b53b410e60551ba0a61d.tar.gz |
Use python2.7
Diffstat (limited to 'rules')
-rw-r--r-- | rules/python.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rules/python.mk b/rules/python.mk index 2c031bc..faa3697 100644 --- a/rules/python.mk +++ b/rules/python.mk @@ -25,7 +25,7 @@ ifeq (,$(__python_mk)) include $(cibs-root)/rules/common.mk -pythons ?= python2.6 python +pythons ?= python2.7 $(foreach py,$(pythons),$(eval $(call add-variant,$(py)))) @@ -37,7 +37,7 @@ build-%-stamp: install-%-stamp: cd "$(sourcedir)" && \ - $* setup.py install --install-layout=deb --no-compile -O0 --root="$(protodir)" + $* setup.py install --install-layout=deb --no-compile -O0 --root="$(topdir)/$(protodir)" touch $@ __python_mk := included |