From a2ad9920dc6ae8c6fd6def7e1b57e350649e8727 Mon Sep 17 00:00:00 2001 From: Debian Multimedia Maintainers Date: Mon, 8 Jun 2020 22:59:00 +0100 Subject: [PATCH] disable-ccache disabled the use of ccache, to prevent FTBFS; as the compilation is done once it has no backdraws to make the debian package. Gbp-Pq: Name disable-ccache.patch --- CMakeLists.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 42ade90..3c65bbe 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -150,12 +150,12 @@ add_definitions(-DBOOST_CHRONO_HEADER_ONLY -DBOOST_NO_AUTO_PTR) ############################################# # Detect CCache -find_program(CCacheExectuable ccache) -if( CCacheExectuable ) - # only used with >=cmake-3.4 - set( CMAKE_C_COMPILER_LAUNCHER "${CCacheExectuable}" ) - set( CMAKE_CXX_COMPILER_LAUNCHER "${CCacheExectuable}" ) -endif() +## find_program(CCacheExecutable ccache) +## if( CCacheExecutable ) +## # only used with >=cmake-3.4 +## set( CMAKE_C_COMPILER_LAUNCHER "${CCacheExecutable}" ) +## set( CMAKE_CXX_COMPILER_LAUNCHER "${CCacheExecutable}" ) +## endif() ############################################# # Options -- 2.30.2