Browse Source

ENH: use convert to output path for depend files

Bill Hoffman 23 years ago
parent
commit
29f7c0ff03
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/cmUnixMakefileGenerator.cxx

+ 1 - 1
Source/cmUnixMakefileGenerator.cxx

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