From e0523655765626fac1064b7facf927fba06ec0fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Hor=C3=A1k?= Date: Fri, 21 Jun 2013 13:43:46 +0200 Subject: [PATCH] - workaround possible too low limits for number of processes and open files, fixes build on ppc/ppc64 and s390(x) --- ninja-build.spec | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/ninja-build.spec b/ninja-build.spec index 58f3c6e..ea572f5 100644 --- a/ninja-build.spec +++ b/ninja-build.spec @@ -2,7 +2,7 @@ Name: ninja-build Version: 1.3.4 -Release: 1%{?dist} +Release: 2%{?dist} Group: Development/Tools Summary: A small build system with a focus on speed @@ -41,6 +41,10 @@ export CFLAGS %check +# workaround possible too low default limits +ulimit -n 2048 +ulimit -u 2048 + ./ninja_test @@ -81,6 +85,10 @@ install -p -m 644 misc/zsh-completion %{buildroot}%{_datadir}/zsh/site-functions %changelog +* Fri Jun 21 2013 Dan HorĂ¡k - 1.3.4-2 +- workaround possible too low limits for number of processes and open files, + fixes build on ppc/ppc64 and s390(x) + * Sun Jun 09 2013 Ben Boeckel - 1.3.4-1 - Update to 1.3.4 - Run test suite