From d38cf06b07c8e69af3ede6433008b96b718386f5 Mon Sep 17 00:00:00 2001 From: Damjan Adamic Date: Sat, 24 Oct 2015 19:09:29 +0200 Subject: [PATCH] File stripping disabled to improve user trace-backs --- companion/src/CMakeLists.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/companion/src/CMakeLists.txt b/companion/src/CMakeLists.txt index d1176bf8e..87f32018a 100644 --- a/companion/src/CMakeLists.txt +++ b/companion/src/CMakeLists.txt @@ -445,7 +445,11 @@ ENDIF() SET(CPACK_PACKAGE_NAME "companion${C9X_NAME_SUFFIX}") SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Models and settings editor for the OpenTx open source firmware") string(TOLOWER "${CPACK_PACKAGE_NAME}" CPACK_PACKAGE_NAME_LOWERCASE) -SET( CPACK_STRIP_FILES TRUE ) + +# The file stripping is deliberately disabled, with the stripped file we get +# very poor trace-backs from the users when they report Companion crash +SET( CPACK_STRIP_FILES FALSE ) + find_program(DPKG_PROGRAM dpkg DOC "dpkg program of Debian-based systems") if(DPKG_PROGRAM) SET(CPACK_GENERATOR "DEB")