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

Modification to bundle script to allow building on natty

parent 74feb333
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