Skip to content

Commit

Permalink
Drop the 'git' suffix from various version variables
Browse files Browse the repository at this point in the history
  • Loading branch information
zmodem committed Jul 27, 2020
1 parent 00ed535 commit bf2c0fb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion libcxx/CMakeLists.txt
Expand Up @@ -32,7 +32,7 @@ if (CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR OR LIBCXX_STANDALONE_BUIL
project(libcxx CXX C)

set(PACKAGE_NAME libcxx)
set(PACKAGE_VERSION 11.0.0git)
set(PACKAGE_VERSION 11.0.0)
set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
set(PACKAGE_BUGREPORT "llvm-bugs@lists.llvm.org")

Expand Down
2 changes: 1 addition & 1 deletion libcxxabi/CMakeLists.txt
Expand Up @@ -25,7 +25,7 @@ if (CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR OR LIBCXXABI_STANDALONE_B
project(libcxxabi CXX C)

set(PACKAGE_NAME libcxxabi)
set(PACKAGE_VERSION 11.0.0git)
set(PACKAGE_VERSION 11.0.0)
set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
set(PACKAGE_BUGREPORT "llvm-bugs@lists.llvm.org")

Expand Down
2 changes: 1 addition & 1 deletion libunwind/CMakeLists.txt
Expand Up @@ -83,7 +83,7 @@ if (CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR OR LIBUNWIND_STANDALONE_B
endif()

set(PACKAGE_NAME libunwind)
set(PACKAGE_VERSION 11.0.0git)
set(PACKAGE_VERSION 11.0.0)
set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
set(PACKAGE_BUGREPORT "llvm-bugs@lists.llvm.org")

Expand Down
2 changes: 1 addition & 1 deletion llvm/CMakeLists.txt
Expand Up @@ -33,7 +33,7 @@ if(NOT DEFINED LLVM_VERSION_PATCH)
set(LLVM_VERSION_PATCH 0)
endif()
if(NOT DEFINED LLVM_VERSION_SUFFIX)
set(LLVM_VERSION_SUFFIX git)
set(LLVM_VERSION_SUFFIX "")
endif()

if (NOT PACKAGE_VERSION)
Expand Down

0 comments on commit bf2c0fb

Please sign in to comment.