Просмотр исходного кода

Merge topic 'vs7-generator-utility-target-typo' into release-4.1

93a83bcc00 cmGlobalVisualStudio7Generator: fix initialization typo

Acked-by: Kitware Robot <[email protected]>
Merge-request: !11100
Brad King 5 месяцев назад
Родитель
Сommit
cf9cdde33d
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      Source/cmGlobalVisualStudio7Generator.cxx

+ 1 - 1
Source/cmGlobalVisualStudio7Generator.cxx

@@ -623,7 +623,7 @@ std::string cmGlobalVisualStudio7Generator::WriteUtilityDepend(
     target->GetLocalGenerator()->MaybeRelativeToCurBinDir(
       cmStrCat(target->GetSupportDirectory(), '\\'));
   for (std::string const& i : configs) {
-    std::string intDir = cmStrCat(intDir, i);
+    std::string intDir = cmStrCat(intDirPrefix, i);
 
     /* clang-format off */
     fout <<