[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: svn commit: r926890 - in /subversion/trunk: build.conf build/generator/gen_win.py

From: Greg Stein <gstein_at_gmail.com>
Date: Thu, 25 Mar 2010 02:45:28 -0400

On Tue, Mar 23, 2010 at 21:02, <rhuijben_at_apache.org> wrote:
>...
> +++ subversion/trunk/build/generator/gen_win.py Wed Mar 24 01:02:26 2010
> @@ -698,9 +698,7 @@ class WinGeneratorBase(GeneratorBase):
>     #
>     # This section parses those dependencies and adds them to the dependency list
>     # for this target.
> -    if name == 'javahl-javah' or name == 'libsvnjavahl' \
> -        or name == 'javahl-callback-javah' or name == 'javahl-compat-java':
> -
> +    if name[0:7] == 'javahl-' or name == 'libsvnjavahl':

if name.startswith('javahl-') or name == 'libsvnjavahl':

>...

Cheers,
-g
Received on 2010-03-25 07:46:02 CET

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.