Suppress possible error from ulimit not having -c or being missing.

Originally committed as revision 8634 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
François Revol 2007-04-06 15:02:13 +00:00
parent 5558bda833
commit 0d0677fbc7
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -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