You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Joe Swatosh <jo...@gmail.com> on 2013/03/25 01:00:41 UTC

[Patch] Allow creating SWIG build targets without a JDK

[[[
Follow up to r1354410 which dropped the JavaHL targets in the absence of a jdk.
It appears to contain an copy-paste-o that also removes the swig targets in
the absence of a jdk.

 * build/generator/gen_win.py
   (get_install_targets): Drop the line the removes the swig targets when there
    is no jdk.
]]]

------------------------------------------------------------------------
Index: build/generator/gen_win.py
===================================================================
--- build/generator/gen_win.py (revision 1460195)
+++ build/generator/gen_win.py (working copy)
@@ -401,7 +401,6 @@
       install_targets = [x for x in install_targets
                                      if not (isinstance(x, gen_base.TargetJava)
                                              or isinstance(x,
gen_base.TargetJavaHeaders)
-                                             or isinstance(x,
gen_base.TargetSWIGProject)
                                              or x.name == '__JAVAHL__'
                                              or x.name == '__JAVAHL_TESTS__'
                                              or x.name == 'libsvnjavahl')]

Re: [Patch] Allow creating SWIG build targets without a JDK

Posted by Joe Swatosh <jo...@gmail.com>.
Thank you! r1461395

--
Joe

On Tue, Mar 26, 2013 at 5:01 AM, Daniel Shahaf <d....@daniel.shahaf.name> wrote:
> +1

Re: [Patch] Allow creating SWIG build targets without a JDK

Posted by Daniel Shahaf <d....@daniel.shahaf.name>.
+1