[Bf-blender-cvs] [1d0e15c9117] master: Install_deps: Fix building python on fedora 28

Bastien Montagne noreply at git.blender.org
Fri Sep 7 20:22:11 CEST 2018


Commit: 1d0e15c9117b31d458ad40d83c4dfc257f8829d9
Author: Bastien Montagne
Date:   Fri Sep 7 20:20:09 2018 +0200
Branches: master
https://developer.blender.org/rB1d0e15c9117b31d458ad40d83c4dfc257f8829d9

Install_deps: Fix building python on fedora 28

Looks like libffi is now a dependency of python as well...

Done it for the other distro as well, just in case. ;)

===================================================================

M	build_files/build_environment/install_deps.sh

===================================================================

diff --git a/build_files/build_environment/install_deps.sh b/build_files/build_environment/install_deps.sh
index 42fdf233825..2abef79a035 100755
--- a/build_files/build_environment/install_deps.sh
+++ b/build_files/build_environment/install_deps.sh
@@ -2777,6 +2777,7 @@ install_DEB() {
   fi
 
   if $_do_compile_python; then
+    install_packages_DEB libffi-dev
     compile_Python
     PRINT ""
     if [ "$NUMPY_SKIP" = true ]; then
@@ -3315,6 +3316,7 @@ install_RPM() {
   fi
 
   if [ "$_do_compile_python" = true ]; then
+    install_packages_RPM libffi-devel
     compile_Python
     PRINT ""
     if [ "$NUMPY_SKIP" = true ]; then
@@ -3744,6 +3746,7 @@ install_ARCH() {
   fi
 
   if [ "$_do_compile_python" = true ]; then
+    install_packages_ARCH libffi
     compile_Python
     PRINT ""
     if [ "$NUMPY_SKIP" = true ]; then



More information about the Bf-blender-cvs mailing list