Remove unintended semicolon from CPACK_PACKAGE_VERSION_PATCH

I noticed this while trying to install a CPack-generated Debian package, since `dpkg` complains about the semicolon being an invalid character.
This commit is contained in:
Clownacy 2020-12-11 14:09:03 +00:00 committed by Rafael Kitover
parent c9595c3668
commit 8455e7add0
1 changed files with 1 additions and 1 deletions

View File

@ -1159,7 +1159,7 @@ set(CPACK_GENERATOR "ZIP")
set(CPACK_SOURCE_GENERATOR "TGZ")
set(CPACK_PACKAGE_VERSION_MAJOR "2")
set(CPACK_PACKAGE_VERSION_MINOR "0")
set(CPACK_PACKAGE_VERSION_PATCH "0-Git-" ${COMMITHASH})
set(CPACK_PACKAGE_VERSION_PATCH "0-Git-${COMMITHASH}")
list(APPEND CPACK_SOURCE_IGNORE_FILES "${CMAKE_CURRENT_SOURCE_DIR}/dependencies")
include(CPack)