[Lldb-commits] [lldb] 9f8fd57 - [lldb] Use ${CMAKE_COMMAND} -E remove instead of remove_directory

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Tue Jan 31 15:34:42 PST 2023


Author: Jonas Devlieghere
Date: 2023-01-31T15:34:36-08:00
New Revision: 9f8fd57cb6638f8137d82b1ceb02845626816b4f

URL: https://github.com/llvm/llvm-project/commit/9f8fd57cb6638f8137d82b1ceb02845626816b4f
DIFF: https://github.com/llvm/llvm-project/commit/9f8fd57cb6638f8137d82b1ceb02845626816b4f.diff

LOG: [lldb] Use ${CMAKE_COMMAND} -E remove instead of remove_directory

We no longer need to remove a directory downstream and also contrary to
my previous observations, remove_directory isn't sufficient to remove a
regular file.

Differential revision: https://reviews.llvm.org/D143024

Added: 
    

Modified: 
    lldb/cmake/modules/AddLLDB.cmake

Removed: 
    


################################################################################
diff  --git a/lldb/cmake/modules/AddLLDB.cmake b/lldb/cmake/modules/AddLLDB.cmake
index a5be4afb40fb0..251c2957e2d19 100644
--- a/lldb/cmake/modules/AddLLDB.cmake
+++ b/lldb/cmake/modules/AddLLDB.cmake
@@ -246,10 +246,8 @@ function(lldb_add_to_buildtree_lldb_framework name subdir)
 
   # Create a custom target to remove the copy again from LLDB.framework in the
   # build tree.
-  # Intentionally use remove_directory because the target can be a either a
-  # file or directory and using remove_directory is harmless for files.
   add_custom_target(${name}-cleanup
-    COMMAND ${CMAKE_COMMAND} -E remove_directory ${copy_dest}
+    COMMAND ${CMAKE_COMMAND} -E remove ${copy_dest}
     COMMENT "Removing ${name} from LLDB.framework")
   add_dependencies(lldb-framework-cleanup
     ${name}-cleanup)


        


More information about the lldb-commits mailing list