You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2013/07/19 00:27:46 UTC

svn commit: r1504696 - /subversion/trunk/win-tests.py

Author: rhuijben
Date: Thu Jul 18 22:27:45 2013
New Revision: 1504696

URL: http://svn.apache.org/r1504696
Log:
* win-tests.py
  Following up on r1504511, also copy the Subversion shared libraries and
  apache modules to the intermediate directory on the test location.

Modified:
    subversion/trunk/win-tests.py

Modified: subversion/trunk/win-tests.py
URL: http://svn.apache.org/viewvc/subversion/trunk/win-tests.py?rev=1504696&r1=1504695&r2=1504696&view=diff
==============================================================================
--- subversion/trunk/win-tests.py (original)
+++ subversion/trunk/win-tests.py Thu Jul 18 22:27:45 2013
@@ -342,7 +342,7 @@ def locate_libs():
   # Copy the Subversion library DLLs
   if not cp.has_option('options', '--disable-shared'):
     for svn_dll in svn_dlls:
-      copy_changed_file(os.path.join(abs_objdir, svn_dll), abs_objdir)
+      copy_changed_file(os.path.join(abs_objdir, svn_dll), abs_builddir)
 
   # Copy the Apache modules
   if run_httpd and cp.has_option('options', '--with-httpd'):
@@ -353,9 +353,9 @@ def locate_libs():
     mod_dontdothat_path = os.path.join(abs_objdir, 'tools', 'server-side',
                                         'mod_dontdothat', 'mod_dontdothat.so')
 
-    copy_changed_file(mod_dav_svn_path, abs_objdir)
-    copy_changed_file(mod_authz_svn_path, abs_objdir)
-    copy_changed_file(mod_dontdothat_path, abs_objdir)
+    copy_changed_file(mod_dav_svn_path, abs_builddir)
+    copy_changed_file(mod_authz_svn_path, abs_builddir)
+    copy_changed_file(mod_dontdothat_path, abs_builddir)
 
   os.environ['PATH'] = abs_builddir + os.pathsep + os.environ['PATH']