[Lldb-commits] [lldb] a48c76c - [lldb/cmake] Tweak descriptions of swig rules

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Wed Jun 3 04:26:36 PDT 2020


Author: Pavel Labath
Date: 2020-06-03T13:26:25+02:00
New Revision: a48c76cf43806c30bab5e8eacd5a08058c83c578

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

LOG: [lldb/cmake] Tweak descriptions of swig rules

This descriptions are printed while running the command, and so the
continuous tense is more appropriate and consistent.

Added: 
    

Modified: 
    lldb/bindings/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/lldb/bindings/CMakeLists.txt b/lldb/bindings/CMakeLists.txt
index ace34191a3c5..a2e51c263f7e 100644
--- a/lldb/bindings/CMakeLists.txt
+++ b/lldb/bindings/CMakeLists.txt
@@ -48,7 +48,7 @@ if (LLDB_ENABLE_PYTHON)
         -o ${CMAKE_CURRENT_BINARY_DIR}/LLDBWrapPython.cpp
         ${LLDB_SOURCE_DIR}/bindings/python.swig
     VERBATIM
-    COMMENT "Builds LLDB Python wrapper")
+    COMMENT "Building LLDB Python wrapper")
 
   add_custom_target(swig_wrapper ALL DEPENDS
     ${CMAKE_CURRENT_BINARY_DIR}/LLDBWrapPython.cpp
@@ -69,7 +69,7 @@ if (LLDB_ENABLE_LUA)
         -o ${CMAKE_CURRENT_BINARY_DIR}/LLDBWrapLua.cpp
         ${LLDB_SOURCE_DIR}/bindings/lua.swig
     VERBATIM
-    COMMENT "Builds LLDB Lua wrapper")
+    COMMENT "Building LLDB Lua wrapper")
 
   add_custom_target(swig_wrapper_lua ALL DEPENDS
     ${CMAKE_CURRENT_BINARY_DIR}/LLDBWrapLua.cpp


        


More information about the lldb-commits mailing list