Christian Theune wrote:
Develop: '/home/ctheune/Development/zc.buildout/.' While: Installing. Getting section test2.3. Initializing part test2.3. Getting section python2.3. Error: The referenced section, 'python2.3', was not defined.
FWIW, I made the following changes to get things working on my system: Index: buildout.cfg =================================================================== --- buildout.cfg (revision 87552) +++ buildout.cfg (working copy) @@ -5,6 +5,9 @@ test2.4 py2.4 oltest2.4 test2.5 py2.5 oltest2.5 +[python2.3] +executable = /usr/bin/python2.3 + [py2.3] recipe = zc.recipe.egg eggs = zc.buildout @@ -32,6 +35,8 @@ ] python = python2.3 +[python2.4] +executable = /opt/local/bin/python2.4 [py2.4] recipe = zc.recipe.egg @@ -60,6 +65,8 @@ ] python = python2.4 +[python2.5] +executable = /opt/local/bin/python2.5 [py2.5] recipe = zc.recipe.egg \malthe