From: Samuel Henrique Date: Wed, 9 Dec 2020 18:23:48 +0000 (+0000) Subject: Disable example config generation at build time X-Git-Tag: archive/raspbian/3.5.3-1+rpi1~1^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=cb9575689c851e484e9f1110384ba61db028887a;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) # }}}