You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by jo...@apache.org on 2013/03/27 04:06:29 UTC

svn commit: r1461395 - /subversion/trunk/build/generator/gen_win.py

Author: joeswatosh
Date: Wed Mar 27 03:06:29 2013
New Revision: 1461395

URL: http://svn.apache.org/r1461395
Log:
Follow up to r1354410 which dropped the JavaHL targets in the absense of a jdk.
It appears to contain an copy-paste-o that also removes the swig targets in
the absense of a jdk.

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

Approved by: danielsh

Modified:
    subversion/trunk/build/generator/gen_win.py

Modified: subversion/trunk/build/generator/gen_win.py
URL: http://svn.apache.org/viewvc/subversion/trunk/build/generator/gen_win.py?rev=1461395&r1=1461394&r2=1461395&view=diff
==============================================================================
--- subversion/trunk/build/generator/gen_win.py (original)
+++ subversion/trunk/build/generator/gen_win.py Wed Mar 27 03:06:29 2013
@@ -401,7 +401,6 @@ class WinGeneratorBase(GeneratorBase):
       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')]