summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2002-02-25 10:47:56 -0500
committerBill Hoffman <bill.hoffman@kitware.com>2002-02-25 10:47:56 -0500
commitcd9157d9ea387fe4203ae03ed5069e29162dc318 (patch)
tree0c360efa59bfc34d8e680ee30940fa58712c190c
parenta6333bfca3c3059776a6a89023da7266fd228344 (diff)
downloadcmake-cd9157d9ea387fe4203ae03ed5069e29162dc318.tar.gz
BUG: fix remove of cygdrive path stuff
-rw-r--r--Source/cmSystemTools.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx
index 74e1621a2f..4b2de1b5be 100644
--- a/Source/cmSystemTools.cxx
+++ b/Source/cmSystemTools.cxx
@@ -431,8 +431,8 @@ std::string cmSystemTools::ConvertToUnixOutputPath(const char* path)
{
std::string ret = path;
- // remove //
- std::string::size_type pos = 0;
+ // remove // except at the beginning might be a cygwin drive
+ std::string::size_type pos = 1;
while((pos = ret.find("//", pos)) != std::string::npos)
{
ret.erase(pos, 1);