[Lldb-commits] [lldb] 742bfb3 - [lldb] Fix LLDB_FULL_VERSION_STRING
    Jonas Devlieghere via lldb-commits 
    lldb-commits at lists.llvm.org
       
    Wed Jan 19 14:20:27 PST 2022
    
    
  
Author: Jonas Devlieghere
Date: 2022-01-19T14:20:22-08:00
New Revision: 742bfb3581e72909dce913cc2d6d77b54777ecdc
URL: https://github.com/llvm/llvm-project/commit/742bfb3581e72909dce913cc2d6d77b54777ecdc
DIFF: https://github.com/llvm/llvm-project/commit/742bfb3581e72909dce913cc2d6d77b54777ecdc.diff
LOG: [lldb] Fix LLDB_FULL_VERSION_STRING
Currently LLDB_FULL_VERSION_STRING is set to "LLDB_VERSION_STRING"
rather than the content of the CMake variable with that name.
Added: 
    
Modified: 
    lldb/source/Version/CMakeLists.txt
Removed: 
    
################################################################################
diff  --git a/lldb/source/Version/CMakeLists.txt b/lldb/source/Version/CMakeLists.txt
index 4d66761739ae2..73367f2775bde 100644
--- a/lldb/source/Version/CMakeLists.txt
+++ b/lldb/source/Version/CMakeLists.txt
@@ -1,5 +1,5 @@
 if(LLDB_VERSION_STRING)
-  set(LLDB_FULL_VERSION_STRING LLDB_VERSION_STRING)
+  set(LLDB_FULL_VERSION_STRING ${LLDB_VERSION_STRING})
 endif()
 
 # Configure the VCSVersion.inc file.
        
    
    
More information about the lldb-commits
mailing list