Disable parallel build

It does indeed fail sometimes. This partially reverts commit b61d90716.
This commit is contained in:
Ondřej Lysoněk 2018-02-26 23:15:46 +01:00
parent b61d907164
commit 7ab3214621

View File

@ -229,13 +229,13 @@ export PYTHONCOERCECLOCALE=0
# First build everything with Python 2 support
%configure $configure_opts PYTHON=%{__python2}
# Parallel build seems broken, thus disabling it
make %{?_smp_mflags}
make
%if 0%{?with_python3}
# ... and then do it again for the Python 3 module
pushd %{py3dir}
%configure $configure_opts PYTHON=%{__python3}
make %{?_smp_mflags}
make
popd
%endif