[Lldb-commits] [PATCH] D53917: [lldb] Fix race condition in framework installation

Shoaib Meenai via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Wed Oct 31 03:43:37 PDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rLLDB345711: [lldb] Fix race condition in framework installation (authored by smeenai, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D53917?vs=171854&id=171884#toc

Repository:
  rLLDB LLDB

https://reviews.llvm.org/D53917

Files:
  cmake/modules/AddLLDB.cmake


Index: cmake/modules/AddLLDB.cmake
===================================================================
--- cmake/modules/AddLLDB.cmake
+++ cmake/modules/AddLLDB.cmake
@@ -79,7 +79,7 @@
         # framework, so it must rely on the framework being fully built first.
         if (LLDB_BUILD_FRAMEWORK AND ${name} STREQUAL "liblldb")
           add_dependencies(install-${name} lldb-framework)
-          add_dependencies(install-lldb-framework-stripped lldb-framework)
+          add_dependencies(install-${name}-stripped lldb-framework)
         endif()
       endif()
     endif()


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D53917.171884.patch
Type: text/x-patch
Size: 581 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20181031/2b07472b/attachment.bin>


More information about the lldb-commits mailing list