From f551135208adc1ac8990f5309ec54325cf897d7d Mon Sep 17 00:00:00 2001 From: Brad King Date: Fri, 18 Oct 2013 14:43:42 -0400 Subject: [PATCH] cmExtraEclipseCDT4Generator: Replace RunCommand with RunSingleCommand Avoid use of the old cmSystemTools::RunCommand by using RunSingleCommand instead. --- Source/cmExtraEclipseCDT4Generator.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmExtraEclipseCDT4Generator.cxx b/Source/cmExtraEclipseCDT4Generator.cxx index bd3d6697f..a2dd903d0 100644 --- a/Source/cmExtraEclipseCDT4Generator.cxx +++ b/Source/cmExtraEclipseCDT4Generator.cxx @@ -1132,7 +1132,7 @@ cmExtraEclipseCDT4Generator::GetEclipsePath(const std::string& path) #if defined(__CYGWIN__) std::string cmd = "cygpath -m " + path; std::string out; - if (!cmSystemTools::RunCommand(cmd.c_str(), out, 0, false)) + if (!cmSystemTools::RunSingleCommand(cmd.c_str(), &out)) { return path; }