From 0d0677fbc7136d032ff86de20a9a7b30a4ac95c6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= <revol@free.fr>
Date: Fri, 6 Apr 2007 15:02:13 +0000
Subject: [PATCH] Suppress possible error from ulimit not having -c or being
 missing.

Originally committed as revision 8634 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 configure | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure b/configure
index 5ea8a5e0612..096ba3b28bb 100755
--- a/configure
+++ b/configure
@@ -1196,7 +1196,7 @@ strip="${cross_prefix}${strip}"
 
 # Disable core dumps so that intentional execution of broken apps doesn't
 # pollute the current directory.
-ulimit -c 0
+ulimit -c 0 >/dev/null 2>&1
 
 # we need to build at least one lib type
 if disabled_all static shared; then
-- 
GitLab