Quellcode durchsuchen

ENH: use convert to output path for depend files

Bill Hoffman vor 23 Jahren
Ursprung
Commit
29f7c0ff03
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      Source/cmUnixMakefileGenerator.cxx

+ 1 - 1
Source/cmUnixMakefileGenerator.cxx

@@ -1804,7 +1804,7 @@ void cmUnixMakefileGenerator::OutputMakeRules(std::ostream& fout)
       if(!(*source)->IsAHeaderFileOnly())
         {
           allsources += " \\\n";
-          allsources += (*source)->GetFullPath();
+          allsources += this->ConvertToOutputPath((*source)->GetFullPath().c_str());
         }
       }
     }