Browse Source

BUG: put spaces in /I paths

Bill Hoffman 24 years ago
parent
commit
91f27f6fbc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/cmDSPWriter.cxx

+ 1 - 1
Source/cmDSPWriter.cxx

@@ -72,7 +72,7 @@ void cmDSPWriter::OutputDSPFile()
   std::vector<std::string>::iterator i;
   for(i = includes.begin(); i != includes.end(); ++i)
     {
-    m_IncludeOptions +=  "/I ";
+    m_IncludeOptions +=  " /I ";
     m_IncludeOptions += cmSystemTools::EscapeSpaces(i->c_str());
     }