From: Samuel Henrique Date: Fri, 24 Sep 2021 19:11:29 +0000 (+0100) Subject: Disable example config generation at build time X-Git-Tag: archive/raspbian/3.5.7-1+rpi1^2~2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=29952b4a7107643e1655af0e43e306b4945b275a;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) # }}}