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.


        
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to