summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorFrançois Revol <revol@free.fr>2007-04-06 15:02:13 +0000
committerFrançois Revol <revol@free.fr>2007-04-06 15:02:13 +0000
commit0d0677fbc7136d032ff86de20a9a7b30a4ac95c6 (patch)
treec5b8dc69a1997006ce818f86c12b424597b22f53 /configure
parent5558bda83391c39cec945a4118c4cad0f61bc97b (diff)
Suppress possible error from ulimit not having -c or being missing.
Originally committed as revision 8634 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 5ea8a5e061..096ba3b28b 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