"Paul Smedley" <pauldes...@despamsmedley.id.au> writes:

> Index: subversion/include/svn_config.h
> ===================================================================
> --- subversion/include/svn_config.h   (revision 957722)
> +++ subversion/include/svn_config.h   (working copy)
> @@ -138,8 +138,14 @@
>   */
>  #define SVN_CONFIG__DEFAULT_GLOBAL_IGNORES_LINE_1 \
>    "*.o *.lo *.la *.al .libs *.so *.so.[0-9]* *.a *.pyc *.pyo"
> +#ifndef __OS2__
>  #define SVN_CONFIG__DEFAULT_GLOBAL_IGNORES_LINE_2 \
>    "*.rej *~ #*# .#* .*.swp .DS_Store"
> +#else
> +/* Extend the list of ignores to include '*.obj *.map *.lib *.exe *.dll 
> *.res *.bak' */
> +#define SVN_CONFIG__DEFAULT_GLOBAL_IGNORES_LINE_2 \
> +  "*.obj *.map *.lib *.exe *.dll *.res *.bak *.rej *~ #*# .#* .*.swp 
> .DS_Store"
> +#endif

Everyone has their own preferred list for default-global-ignores :)

Why should things like *.exe and *.dll be OS2 specific?

>  
>  #define SVN_CONFIG_DEFAULT_GLOBAL_IGNORES \
>    SVN_CONFIG__DEFAULT_GLOBAL_IGNORES_LINE_1 " " \

-- 
Philip

Reply via email to