From 84ec96db2c3ef78a59d8fb3bc59fc7848b9c915e Mon Sep 17 00:00:00 2001 From: Tomas Orsava Date: Apr 23 2020 14:26:58 +0000 Subject: Compile with Platform-Python binary where relevant --- diff --git a/scripts/brp-python-bytecompile b/scripts/brp-python-bytecompile index c06bdfa..4a9b49e 100644 --- a/scripts/brp-python-bytecompile +++ b/scripts/brp-python-bytecompile @@ -61,6 +61,9 @@ shopt -s nullglob for python_libdir in `find "$RPM_BUILD_ROOT" -type d|grep -E "/usr/lib(64)?/python[0-9]\.[0-9]$"`; do python_binary=/usr/bin/$(basename $python_libdir) + if [ "$python_binary" = "/usr/bin/python3.6" ]; then + python_binary=/usr/libexec/platform-python + fi real_libdir=${python_libdir/$RPM_BUILD_ROOT/} echo "Bytecompiling .py files below $python_libdir using $python_binary"