From cd9157d9ea387fe4203ae03ed5069e29162dc318 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Mon, 25 Feb 2002 10:47:56 -0500 Subject: [PATCH] BUG: fix remove of cygdrive path stuff --- Source/cmSystemTools.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index 74e1621a2..4b2de1b5b 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);