From 07c4f9f145db9fe61b4b49dfb345fbcc29da311f Mon Sep 17 00:00:00 2001 From: Brad King Date: Fri, 25 May 2001 15:33:22 -0400 Subject: [PATCH] BUG: Fixed stupid error in the hack I just checked in. --- Source/cmSystemTools.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index f2ef341de..c9f075300 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -93,7 +93,7 @@ void cmSystemTools::GetPath(std::vector& path) // A hack to make the below algorithm work. if(pathEnv[pathEnv.length()-1] != ':') { - pathEnv += ":"; + pathEnv += pathSep; } std::string::size_type start =0; bool done = false;