فهرست منبع

Merge topic 'fbuild_fix_globbing' into release-4.2

6fd6bfab6f FASTBuild: fix globbing for large projects

Acked-by: Kitware Robot <[email protected]>
Acked-by: 风之凌殇 <[email protected]>
Merge-request: !11310
Brad King 3 روز پیش
والد
کامیت
dfd70ad195
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      Source/cmGlobalFastbuildGenerator.cxx

+ 2 - 2
Source/cmGlobalFastbuildGenerator.cxx

@@ -1543,8 +1543,8 @@ void cmGlobalFastbuildGenerator::AddGlobCheckExec()
     FastbuildExecNode globCheck;
     globCheck.Name = FASTBUILD_GLOB_CHECK_TARGET;
     globCheck.ExecExecutable = cmSystemTools::GetCMakeCommand();
-    globCheck.ExecArguments = "-P " FASTBUILD_1_INPUT_PLACEHOLDER;
-    globCheck.ExecInput = { this->ConvertToFastbuildPath(globScript) };
+    globCheck.ExecArguments =
+      cmStrCat("-P ", this->ConvertToFastbuildPath(globScript));
     globCheck.ExecAlways = false;
     globCheck.ExecUseStdOutAsOutput = false;
     auto const cache = this->GetCMakeInstance()->GetGlobCacheEntries();