Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2018-09-07 21:20:09 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2018-09-07 21:21:57 +0300
commit1d0e15c9117b31d458ad40d83c4dfc257f8829d9 (patch)
treeeb4f726e8be58558097ce4d9d96664ad315bef0c /build_files
parent7be3378d1620b1a8029b78425e3a64e2fcd6b210 (diff)
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. ;)
Diffstat (limited to 'build_files')
-rwxr-xr-xbuild_files/build_environment/install_deps.sh3
1 files changed, 3 insertions, 0 deletions
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