Re: svn commit: r369283 - in /httpd/httpd/trunk: ./ build/win32/ modules/aaa/ modules/arch/win32/ modules/cache/ modules/database/ modules/dav/fs/ modules/dav/main/ modules/debug/ modules/echo/ module

2006-01-16 Thread William A. Rowe, Jr.

[EMAIL PROTECTED] wrote:

Author: rooneg
Date: Sun Jan 15 15:47:19 2006
New Revision: 369283

URL: http://svn.apache.org/viewcvs?rev=369283view=rev
Log:
Update svn:ignore properties so that generated files from a win32 VC++
Express build are ignored.

--- svn:ignore (original)
+++ svn:ignore Sun Jan 15 15:47:19 2006
@@ -37,5 +37,6 @@
 *.stt
 *.sto
 *.vcproj
+*.vcproj.*


Quick observation, wouldn't a single;

*.vcproj*

be a bit more efficient :-?

Bill


Re: svn commit: r369283 - in /httpd/httpd/trunk: ./ build/win32/ modules/aaa/ modules/arch/win32/ modules/cache/ modules/database/ modules/dav/fs/ modules/dav/main/ modules/debug/ modules/echo/ module

2006-01-16 Thread Garrett Rooney
On 1/16/06, William A. Rowe, Jr. [EMAIL PROTECTED] wrote:
 [EMAIL PROTECTED] wrote:
  Author: rooneg
  Date: Sun Jan 15 15:47:19 2006
  New Revision: 369283
 
  URL: http://svn.apache.org/viewcvs?rev=369283view=rev
  Log:
  Update svn:ignore properties so that generated files from a win32 VC++
  Express build are ignored.
 
  --- svn:ignore (original)
  +++ svn:ignore Sun Jan 15 15:47:19 2006
  @@ -37,5 +37,6 @@
   *.stt
   *.sto
   *.vcproj
  +*.vcproj.*

 Quick observation, wouldn't a single;

 *.vcproj*

 be a bit more efficient :-?

I suppose, but I don't want to block out foo.vcprojbar, since Visual
Studio doesn't create files like that, it's always either foo.vcproj
or foo.vcproj.someotherstuff.

-garrett