diff options
author | Jani Välimaa <wally@mageia.org> | 2021-02-28 10:40:46 +0200 |
---|---|---|
committer | Jani Välimaa <wally@mageia.org> | 2021-02-28 10:40:46 +0200 |
commit | d5c7b5570ebbd9bec0bb9e52c4256fc4db87a3b6 (patch) | |
tree | 233eb3bc20aa17b325c29a3a00621a0de9084a63 | |
parent | 4369f6d3ca00a0a876d047c02656293cd98a8ffd (diff) | |
download | rpm-setup-d5c7b5570ebbd9bec0bb9e52c4256fc4db87a3b6.tar rpm-setup-d5c7b5570ebbd9bec0bb9e52c4256fc4db87a3b6.tar.gz rpm-setup-d5c7b5570ebbd9bec0bb9e52c4256fc4db87a3b6.tar.bz2 rpm-setup-d5c7b5570ebbd9bec0bb9e52c4256fc4db87a3b6.tar.xz rpm-setup-d5c7b5570ebbd9bec0bb9e52c4256fc4db87a3b6.zip |
build.macros: Disable python byte compilation outside python dirs by default (set _python_bytecompile_extra to 0)
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | build.macros.in | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -1,3 +1,4 @@ +- disable python byte compilation outside python dirs by default (set _python_bytecompile_extra to 0) - rpm-spec-mode.el: update to version 0.16 Version 2.57 - 23 June 2020, by Thierry Vignaud diff --git a/build.macros.in b/build.macros.in index bcbce72..2ed8041 100644 --- a/build.macros.in +++ b/build.macros.in @@ -468,8 +468,8 @@ fi %_python_bytecompile_errors_terminate_build 1 # -## Should python bytecompilation compile outisde python specific directories? -%_python_bytecompile_extra 1 +## Should python bytecompilation compile outside python specific directories? +%_python_bytecompile_extra 0 # Use SHA-256 for FILEDIGESTS instead of default MD5 %_source_filedigest_algorithm 8 |