You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by "G.J. Doornink" <dk...@xs4all.nl> on 2007/10/29 22:43:05 UTC

[PATCH] Add missing definition for ruby to build/win32/make_dist.conf.template

Currently make_dist.py generates the following error.

make_dist: Creating ruby gem
Traceback (most recent call last):
  File "build\win32\make_dist.py", line 431, in _make_dist
    rubycmd = '"%s" "%s" --output-dir="%s"' % (cfg.get('tools', 'ruby'),
  File "C:\PROGRA~1\Python24\lib\ConfigParser.py", line 520, in get
    raise NoOptionError(option, section)
NoOptionError: No option 'ruby' in section: 'tools'
make_dist: Exit 1

The following patch fixes this.

[[[
Add missing definition for ruby to [tools] section of
make_dist.conf.template

* build/win32/make_dist.conf.template
  Add ruby definition to [tools] section.

Patch by: G.J. Doornink
]]]

-- 
G.J. Doornink <dk...@xs4all.nl>

Re: [PATCH] Add missing definition for ruby to build/win32/make_dist.conf.template

Posted by "Daniel L. Rall" <dl...@finemaltcoding.com>.
On Mon, 29 Oct 2007, G.J. Doornink wrote:

> Currently make_dist.py generates the following error.
> 
> make_dist: Creating ruby gem
> Traceback (most recent call last):
>   File "build\win32\make_dist.py", line 431, in _make_dist
>     rubycmd = '"%s" "%s" --output-dir="%s"' % (cfg.get('tools', 'ruby'),
>   File "C:\PROGRA~1\Python24\lib\ConfigParser.py", line 520, in get
>     raise NoOptionError(option, section)
> NoOptionError: No option 'ruby' in section: 'tools'
> make_dist: Exit 1
> 
> The following patch fixes this.
> 
> [[[
> Add missing definition for ruby to [tools] section of
> make_dist.conf.template
> 
> * build/win32/make_dist.conf.template
>   Add ruby definition to [tools] section.
> 
> Patch by: G.J. Doornink
> ]]]

Thanks, committed to trunk in r27476.