You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2010/04/01 20:13:00 UTC

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

Author: rhuijben
Date: Thu Apr  1 18:13:00 2010
New Revision: 930057

URL: http://svn.apache.org/viewvc?rev=930057&view=rev
Log:
* build/generator/gen_win.py
  (get_proj_sources): Following up on r926613, apply the same fix as
    r930042 did for the swig build for a shared library build. Also
    remove some accidentally added whitespace.

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=930057&r1=930056&r2=930057&view=diff
==============================================================================
--- subversion/trunk/build/generator/gen_win.py (original)
+++ subversion/trunk/build/generator/gen_win.py Thu Apr  1 18:13:00 2010
@@ -562,7 +562,7 @@ class WinGeneratorBase(GeneratorBase):
 
                 cbuild = '%s %s -o %s $(InputPath)' \
                          % (self.swig_exe, " ".join(swig_options), cout)
-                         
+
                 cdesc = 'Generating %s' % cout
 
                 sources.append(ProjectItem(path=isrc, reldir=None,
@@ -583,8 +583,13 @@ class WinGeneratorBase(GeneratorBase):
       cbuild = "python $(InputPath) %s > %s" \
                % (" ".join(deps), def_file)
 
-      sources.append(ProjectItem(path=gsrc, reldir=None, custom_build=cbuild,
-                                 user_deps=deps, custom_target=def_file,
+      cdesc = 'Generating %s ' % def_file
+
+      sources.append(ProjectItem(path=gsrc, reldir=None, 
+                                 custom_build=cbuild,
+                                 custom_target=def_file,
+                                 custom_desc=cdesc,
+                                 user_deps=deps, 
                                  extension=''))
 
       sources.append(ProjectItem(path=def_file, reldir=None,