You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by bb...@apache.org on 2019/02/27 16:54:48 UTC

[geode-native] branch develop updated: GEODE-6226: Overrode package source file name

This is an automated email from the ASF dual-hosted git repository.

bbender pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-native.git


The following commit(s) were added to refs/heads/develop by this push:
     new c5f9a59  GEODE-6226: Overrode package source file name
c5f9a59 is described below

commit c5f9a59372a0a555d63a62fbab0e10ec201523a9
Author: Blake Bender <ek...@hotmail.com>
AuthorDate: Wed Feb 27 08:54:43 2019 -0800

    GEODE-6226: Overrode package source file name
    
    - simple change from cmake default 'Source' to 'src' in output package file
---
 CMakeLists.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 93fd5a1..22c801c 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -113,6 +113,7 @@ set(CPACK_PACKAGE_VENDOR "${PRODUCT_VENDOR}")
 set(CPACK_PACKAGE_NAME "${PRODUCT_PACKAGE_NAME}")
 set(CPACK_SYSTEM_NAME "${PRODUCT_SYSTEM_NAME}-${PRODUCT_BITS}")
 set(CPACK_PACKAGE_FILE_NAME ${CPACK_PACKAGE_NAME}-${PRODUCT_VERSION}-${CPACK_SYSTEM_NAME})
+set(CPACK_SOURCE_PACKAGE_FILE_NAME ${CPACK_PACKAGE_NAME}-${PRODUCT_VERSION}-src)
 set(CPACK_INCLUDE_TOPLEVEL_DIRECTORY 0)
 set(CPACK_PACKAGING_INSTALL_PREFIX "/${CPACK_PACKAGE_NAME}")
 set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/dist/LICENSE")