[Erp5-report] r38910 luke - /erp5/trunk/buildout/software-profiles/

nobody at svn.erp5.org nobody at svn.erp5.org
Wed Oct 6 10:32:06 CEST 2010


Author: luke
Date: Wed Oct  6 10:32:05 2010
New Revision: 38910

URL: http://svn.erp5.org?rev=38910&view=rev
Log:
 - make it possible to pass arguments to generated bin/boostrap*

Modified:
    erp5/trunk/buildout/software-profiles/python-2.4.cfg
    erp5/trunk/buildout/software-profiles/python-2.6.cfg
    erp5/trunk/buildout/software-profiles/python-2.7.cfg

Modified: erp5/trunk/buildout/software-profiles/python-2.4.cfg
URL: http://svn.erp5.org/erp5/trunk/buildout/software-profiles/python-2.4.cfg?rev=38910&r1=38909&r2=38910&view=diff
==============================================================================
--- erp5/trunk/buildout/software-profiles/python-2.4.cfg [utf8] (original)
+++ erp5/trunk/buildout/software-profiles/python-2.4.cfg [utf8] Wed Oct  6 10:32:05 2010
@@ -36,7 +36,7 @@ eggs = zc.buildout
 python = python2.4
 scripts =
     buildout=bootstrap2.4
-arguments = ["bootstrap"]
+arguments = sys.argv[1:] + ["bootstrap"]
 
 [rebootstrap2.4]
 recipe = zc.recipe.egg

Modified: erp5/trunk/buildout/software-profiles/python-2.6.cfg
URL: http://svn.erp5.org/erp5/trunk/buildout/software-profiles/python-2.6.cfg?rev=38910&r1=38909&r2=38910&view=diff
==============================================================================
--- erp5/trunk/buildout/software-profiles/python-2.6.cfg [utf8] (original)
+++ erp5/trunk/buildout/software-profiles/python-2.6.cfg [utf8] Wed Oct  6 10:32:05 2010
@@ -15,7 +15,7 @@ eggs = zc.buildout
 python = python2.6
 scripts =
     buildout=bootstrap2.6
-arguments = ["bootstrap"]
+arguments = sys.argv[1:] + ["bootstrap"]
 
 [rebootstrap2.6]
 recipe = zc.recipe.egg

Modified: erp5/trunk/buildout/software-profiles/python-2.7.cfg
URL: http://svn.erp5.org/erp5/trunk/buildout/software-profiles/python-2.7.cfg?rev=38910&r1=38909&r2=38910&view=diff
==============================================================================
--- erp5/trunk/buildout/software-profiles/python-2.7.cfg [utf8] (original)
+++ erp5/trunk/buildout/software-profiles/python-2.7.cfg [utf8] Wed Oct  6 10:32:05 2010
@@ -26,7 +26,7 @@ eggs = zc.buildout
 python = python2.7
 scripts =
     buildout=bootstrap2.7
-arguments = ["bootstrap"]
+arguments = sys.argv[1:] + ["bootstrap"]
 
 [rebootstrap2.7]
 recipe = zc.recipe.egg




More information about the Erp5-report mailing list