You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2010/11/18 16:06:51 UTC

svn commit: r1036478 - /subversion/trunk/tools/dev/unix-build/Makefile.svn

Author: stsp
Date: Thu Nov 18 15:06:51 2010
New Revision: 1036478

URL: http://svn.apache.org/viewvc?rev=1036478&view=rev
Log:
* tools/dev/unix-build/Makefile.svn: Allow symlinks to existing working copies.

Modified:
    subversion/trunk/tools/dev/unix-build/Makefile.svn

Modified: subversion/trunk/tools/dev/unix-build/Makefile.svn
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dev/unix-build/Makefile.svn?rev=1036478&r1=1036477&r2=1036478&view=diff
==============================================================================
--- subversion/trunk/tools/dev/unix-build/Makefile.svn (original)
+++ subversion/trunk/tools/dev/unix-build/Makefile.svn Thu Nov 18 15:06:51 2010
@@ -801,7 +801,7 @@ $(SVN_OBJDIR)/.retrieved:
 		branchdir="$(BRANCH)"; \
 		co="co"; \
 	fi; \
-	if [ ! -d $(SVN_WC) ]; then \
+	if [ ! -d $(SVN_WC) -o ! -L $(SVN_WC) ]; then \
 		svn $${co} $(SUBVERSION_REPOS_URL)/$${branchdir} \
 			$(SVN_WC); \
 	fi