[libc-commits] [libc] 10bb03c - [libc][NFC][Obvious] Remove line break from a CMake message.

Siva Chandra Reddy via libc-commits libc-commits at lists.llvm.org
Thu May 28 14:55:36 PDT 2020


Author: Siva Chandra Reddy
Date: 2020-05-28T14:55:24-07:00
New Revision: 10bb03c1c1901de225352814e0e51096b3d4c656

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

LOG: [libc][NFC][Obvious] Remove line break from a CMake message.

The line break was giving an impression of something going wrong.

Added: 
    

Modified: 
    libc/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/libc/CMakeLists.txt b/libc/CMakeLists.txt
index ce78d0a5aebf..df0448b74edf 100644
--- a/libc/CMakeLists.txt
+++ b/libc/CMakeLists.txt
@@ -32,8 +32,8 @@ if(COMMAND_RETURN_CODE EQUAL 0)
   set(COMPILER_RESOURCE_DIR
     "${COMPILER_RESOURCE_DIR}" CACHE PATH "path to compiler resource dir"
   )
-  message(STATUS "Set COMPILER_RESOURCE_DIR to
-                  ${COMPILER_RESOURCE_DIR} using --print-resource-dir")
+  message(STATUS "Set COMPILER_RESOURCE_DIR to "
+                 "${COMPILER_RESOURCE_DIR} using --print-resource-dir")
 else()
   set(COMPILER_RESOURCE_DIR OFF)
   message(STATUS "COMPILER_RESOURCE_DIR not set


        


More information about the libc-commits mailing list