# HG changeset patch # User Hasan Yavuz Ă–ZDERYA # Date 2015-07-26 05:29:18 # Node ID 6a4043e1c90be4872d3cf2c1ea2c07d261e93798 # Parent ff3c46c34191fad98b1ff1499506e562a21849f9 added .in suffix to configurated install scripts diff --git a/CMakeLists.txt b/CMakeLists.txt --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -180,8 +180,8 @@ endif (UNIX) include(InstallRequiredSystemLibraries) # configure debian scripts -configure_file(${CMAKE_SOURCE_DIR}/debian/postinst ${CMAKE_BINARY_DIR}/debian/postinst) -configure_file(${CMAKE_SOURCE_DIR}/debian/postrm ${CMAKE_BINARY_DIR}/debian/postrm) +configure_file(${CMAKE_SOURCE_DIR}/debian/postinst.in ${CMAKE_BINARY_DIR}/debian/postinst) +configure_file(${CMAKE_SOURCE_DIR}/debian/postrm.in ${CMAKE_BINARY_DIR}/debian/postrm) set(CPACK_PACKAGE_NAME "${PROGRAM_NAME}") set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Small and simple software for plotting data from serial port") diff --git a/debian/postinst b/debian/postinst.in rename from debian/postinst rename to debian/postinst.in diff --git a/debian/postrm b/debian/postrm.in rename from debian/postrm rename to debian/postrm.in