[Cmake-commits] CMake branch, next, updated. v2.8.7-2996-g60e9b54

Brad King brad.king at kitware.com
Fri Mar 2 08:13:57 EST 2012


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, next has been updated
       via  60e9b54922aa339ca97faa1d087f5459e59ee151 (commit)
       via  0916cc888a086293f4c17e9c927f2267e1fdb755 (commit)
      from  0ea9866815c7b9e8fc9665c696c69b39f1f3c6b5 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=60e9b54922aa339ca97faa1d087f5459e59ee151
commit 60e9b54922aa339ca97faa1d087f5459e59ee151
Merge: 0ea9866 0916cc8
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Fri Mar 2 08:13:55 2012 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Fri Mar 2 08:13:55 2012 -0500

    Merge topic 'fix-CTestUpdateHG-url' into next
    
    0916cc8 CTest.UpdateHG: Fix repo URL for local filesystem (#13001)


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=0916cc888a086293f4c17e9c927f2267e1fdb755
commit 0916cc888a086293f4c17e9c927f2267e1fdb755
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Fri Mar 2 08:07:47 2012 -0500
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Fri Mar 2 08:07:47 2012 -0500

    CTest.UpdateHG: Fix repo URL for local filesystem (#13001)
    
    Use "file:///c:/" instead of "file://c:/" because the latter
    looks like a machine:port URL instead of a local file URL.

diff --git a/Tests/CTestUpdateHG.cmake.in b/Tests/CTestUpdateHG.cmake.in
index 543ddd9..5a9daae 100644
--- a/Tests/CTestUpdateHG.cmake.in
+++ b/Tests/CTestUpdateHG.cmake.in
@@ -28,7 +28,7 @@ run_child(
   WORKING_DIRECTORY ${TOP}/repo.hg
   COMMAND ${HG} init
   )
-set(REPO file://${TOP}/repo.hg)
+set(REPO file:///${TOP}/repo.hg)
 
 #-----------------------------------------------------------------------------
 # Import initial content into the repository.

-----------------------------------------------------------------------

Summary of changes:
 Tests/CTestUpdateHG.cmake.in |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list