diff --git a/vim.changes b/vim.changes index 3e5e3c5..bb9e468 100644 --- a/vim.changes +++ b/vim.changes @@ -14,6 +14,12 @@ Mon Jan 8 11:32:31 UTC 2018 - idonmez@suse.com * The :leftabove modifier doesn't work for :copen. * Compiler warning on 64 bit MS-Windows system. +------------------------------------------------------------------- +Mon Jan 8 11:18:32 UTC 2018 - normand@linux.vnet.ibm.com + +- ignore make check transient errors for PowerPC + bypass boo#1072651 + ------------------------------------------------------------------- Sun Jan 7 17:08:12 UTC 2018 - suse-beta@cboltz.de diff --git a/vim.spec b/vim.spec index 542a39d..75c2ace 100644 --- a/vim.spec +++ b/vim.spec @@ -341,7 +341,12 @@ export TERM=linux # Reset the terminal scrolling region left behind by the testsuite trap "printf '\e[r'" EXIT # Look for "TEST FAILURE" in the build log +%ifarch ppc ppc64 ppc64le +LC_ALL=en_US.UTF-8 make test || { echo "Ignore transient errors for PowerPC. boo#1072651"; } +%else +make test LC_ALL=en_US.UTF-8 make test +%endif %post %{_sbindir}/update-alternatives --install %{_bindir}/vim vim %{_bindir}/vim-nox11 20