Skip to content
Snippets Groups Projects
Commit 058a9653 authored by Valerio Mariani's avatar Valerio Mariani
Browse files

Modification to bundle script to allow building on natty

Conflicts:

	deployment/linux/create_bundle.py
parent bc2d47a7
Branches
Tags
No related merge requests found
......@@ -8,11 +8,11 @@ import datetime
# custom parameters
if len(sys.argv) < 2:
print 'usage: create_bundle.py additional_label'
if len(sys.argv) < 3:
print 'usage: create_bundle.py additional_label system_python_version'
sys.exit()
system_python_version='python2.6'
system_python_version=sys.argv[2]
system_python_bin='/usr/bin/'+system_python_version
system_python_libs='/usr/lib/'+system_python_version
second_system_python_libs_flag=True
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment