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 21:51:33 UTC

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

Author: stsp
Date: Thu Nov 18 20:51:33 2010
New Revision: 1036618

URL: http://svn.apache.org/viewvc?rev=1036618&view=rev
Log:
* tools/dev/unix-build/Makefile.svn: Create copies of test logs, not hard links.

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=1036618&r1=1036617&r2=1036618&view=diff
==============================================================================
--- subversion/trunk/tools/dev/unix-build/Makefile.svn (original)
+++ subversion/trunk/tools/dev/unix-build/Makefile.svn Thu Nov 18 20:51:33 2010
@@ -1004,11 +1004,11 @@ svn-check-neon: httpd-conf $(SVN_OBJDIR)
 	-cd $(svn_builddir) && make check FS_TYPE=fsfs \
 	       BASE_URL=http://localhost:$(HTTPD_CHECK_PORT) HTTP_LIBRARY=neon \
 	       $(PARALLEL)
-	ln -f $(svn_builddir)/tests.log $(svn_builddir)/tests.log.ra_neon-fsfs
+	cp -f $(svn_builddir)/tests.log $(svn_builddir)/tests.log.ra_neon-fsfs
 	-cd $(svn_builddir) && make check FS_TYPE=bdb \
 	       BASE_URL=http://localhost:$(HTTPD_CHECK_PORT) HTTP_LIBRARY=neon \
 	       $(PARALLEL)
-	ln -f $(svn_builddir)/tests.log $(svn_builddir)/tests.log.ra_neon-bdb
+	cp -f $(svn_builddir)/tests.log $(svn_builddir)/tests.log.ra_neon-bdb
 	$(HTTPD_STOP_CMD)
 
 svn-check-serf: httpd-conf $(SVN_OBJDIR)/.compiled $(SVN_OBJDIR)/.bindings-compiled
@@ -1016,27 +1016,27 @@ svn-check-serf: httpd-conf $(SVN_OBJDIR)
 	-cd $(svn_builddir) && make check FS_TYPE=fsfs \
 	       BASE_URL=http://localhost:$(HTTPD_CHECK_PORT) HTTP_LIBRARY=serf \
 	       $(PARALLEL)
-	ln -f $(svn_builddir)/tests.log $(svn_builddir)/tests.log.ra_serf-fsfs
+	cp -f $(svn_builddir)/tests.log $(svn_builddir)/tests.log.ra_serf-fsfs
 	-cd $(svn_builddir) && make check FS_TYPE=bdb \
 	       BASE_URL=http://localhost:$(HTTPD_CHECK_PORT) HTTP_LIBRARY=serf \
 	       $(PARALLEL)
-	ln -f $(svn_builddir)/tests.log $(svn_builddir)/tests.log.ra_serf-bdb
+	cp -f $(svn_builddir)/tests.log $(svn_builddir)/tests.log.ra_serf-bdb
 	$(HTTPD_STOP_CMD)
 
 svn-check-local:
 	-cd $(svn_builddir) && make check FS_TYPE=fsfs $(PARALLEL)
-	ln -f $(svn_builddir)/tests.log $(svn_builddir)/tests.log.ra_local-fsfs
+	cp -f $(svn_builddir)/tests.log $(svn_builddir)/tests.log.ra_local-fsfs
 	-cd $(svn_builddir) && make check FS_TYPE=bdb $(PARALLEL)
-	ln -f $(svn_builddir)/tests.log $(svn_builddir)/tests.log.ra_local-bdb
+	cp -f $(svn_builddir)/tests.log $(svn_builddir)/tests.log.ra_local-bdb
 
 svn-check-svn:
 	$(SVNSERVE_START_CMD)
 	-cd $(svn_builddir) && make check FS_TYPE=fsfs \
 		BASE_URL=svn://127.0.0.1 $(PARALLEL)
-	ln -f $(svn_builddir)/tests.log $(svn_builddir)/tests.log.ra_svn-fsfs
+	cp -f $(svn_builddir)/tests.log $(svn_builddir)/tests.log.ra_svn-fsfs
 	-cd $(svn_builddir) && make check FS_TYPE=bdb \
 		BASE_URL=svn://127.0.0.1 $(PARALLEL)
-	ln -f $(svn_builddir)/tests.log $(svn_builddir)/tests.log.ra_svn-bdb
+	cp -f $(svn_builddir)/tests.log $(svn_builddir)/tests.log.ra_svn-bdb
 	$(SVNSERVE_STOP_CMD)
 
 .PHONY: svn-check-swig-pl svn-check-swig-py svn-check-swig-rb svn-check-javahl