Peter Samuelson <peter@p12n.org> writes:
> *.so* seems too broad. That catches all sorts of stuff besides ELF
> shared libraries - I can imagine someone having files ending in, say,
> *.solid or *.sound. Maybe "*.so *.so.[0-9]*" instead?
Good catch, new patch:
Index: svn_config.h
===================================================================
--- svn_config.h (revision 26372)
+++ svn_config.h (working copy)
@@ -121,7 +121,8 @@
/*** Configuration Default Values ***/
#define SVN_CONFIG_DEFAULT_GLOBAL_IGNORES \
- "*.o *.lo *.la #*# .*.rej *.rej .*~ *~ .#* .DS_Store .*.swp"
+ "*.o *.lo *.la *.al .libs *.so *.so.[0-9]* *.a *.pyc *.pyo" \
+ " .*.rej *.rej .*~ *~ #*# .#* .*.swp .DS_Store"
#define SVN_CONFIG_TRUE "true"
#define SVN_CONFIG_FALSE "false"
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Thu Aug 30 00:35:30 2007