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

RE: The .svn directory name causing trouble

From: Shawn <discostu26_at_shaw.ca>
Date: 2003-09-25 03:26:34 CEST

NO hiding the .svn dirs does not help.
If you read the code in FAQ you just pointed to you can see that it
RENAMES the .svn dirs to _svn, and that's why it works.

hide-svn.cmd:
@ECHO OFF
FOR /R %%f IN (.svn) DO IF EXIST "%%f" (
   ATTRIB -h "%%f"
   RENAME "%%f" _svn
)

-----Original Message-----
From: Branko Cibej [mailto:brane@xbc.nu]
Sent: September 24, 2003 4:35 PM
To: nick vajberg
Cc: dev@subversion.tigris.org
Subject: Re: The .svn directory name causing trouble

Well, well. So hiding the .svn directory helps, does it? Now, there's
code in SVN that does exactly that, if you happen to have binaries that
were build against a new enough APR. The APR in httpd-2.0.47 is not new
enough; the one in httpd-2.0.48 will be.

So this problem will just go away. The impatient can build their own
binaries against a newer APR.

-- 
Brane Čibej   <brane_at_xbc.nu>   http://www.xbc.nu/brane/
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Thu Sep 25 03:27:42 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.