Commit 0d0677fb authored by François Revol's avatar François Revol

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

Originally committed as revision 8634 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 5558bda8
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment