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

[PATCH] issue #787: Wildcards not expanded in filename arguments on Windows.

From: Martin Hauner <hauner_at_web.de>
Date: 2003-06-22 17:25:48 CEST

Hi,

here is a small patch for #787, so the * wilcard works without cygwin.

--------------------------------------------------------------------------

Fix issue #787: Wildcards not expanded in filename arguments on Windows.

    * build/generator/gen_win.py
      (get_win_libs): added support of * wildcard expansion on Windows by
      adding setargv.obj as linker input for the svn command line client.

-- 
Martin

Index: build/generator/gen_win.py
===================================================================
--- build/generator/gen_win.py (revision 6316)
+++ build/generator/gen_win.py (working copy)
@@ -450,6 +450,9 @@
         else:
           nondeplibs.append(lib.fname+'.lib')
 
+ if target.name == 'svn':
+ nondeplibs.append('setargv.obj')
+
     return nondeplibs
 
   def get_win_sources(self, target, reldir_prefix=''):

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sun Jun 22 17:26:27 2003

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.