From be51680023aa7d909f5a32dd21356dfd2d8d2e50 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Tue, 6 May 2014 10:40:53 +0200 Subject: [PATCH] build_style/python-module: use working python version to fix cross build failures. --- common/build_style/python-module.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/build_style/python-module.sh b/common/build_style/python-module.sh index f42b2d2c7cd..1137d24f4a0 100644 --- a/common/build_style/python-module.sh +++ b/common/build_style/python-module.sh @@ -3,7 +3,7 @@ # do_build() { - : ${python_versions:=2} + : ${python_versions:=2.7} local python_version= for python_version in $python_versions; do @@ -25,7 +25,7 @@ do_build() { } do_install() { - : ${python_versions:=2} + : ${python_versions:=2.7} local python_version= make_install_args+=" --prefix=/usr --root=$DESTDIR"