From: Samuel Henrique Date: Fri, 27 Aug 2021 09:25:53 +0000 (+0100) Subject: Disable example config generation at build time X-Git-Tag: archive/raspbian/3.5.7-1+rpi1~3 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=56c76395e5f3d1338d5dc7a864387e9cc1c9e636;p=polybar.git Disable example config generation at build time Forwarded: not-needed This patch is needed for reproducible builds Gbp-Pq: Name disable_config_generation.patch --- diff --git a/CMakeLists.txt b/CMakeLists.txt index d687cdd..1d3974b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -155,13 +155,13 @@ endif() # }}} # Configure and install {{{ -configure_file( - ${CMAKE_CURRENT_LIST_DIR}/config.cmake - ${CMAKE_CURRENT_LIST_DIR}/config - ESCAPE_QUOTES @ONLY) - -install(FILES config - DESTINATION ${CMAKE_INSTALL_DOCDIR} - COMPONENT config) +#configure_file( +# ${CMAKE_CURRENT_LIST_DIR}/config.cmake +# ${CMAKE_CURRENT_LIST_DIR}/config +# ESCAPE_QUOTES @ONLY) +# +#install(FILES config +# DESTINATION ${CMAKE_INSTALL_DOCDIR} +# COMPONENT config) # }}}