Commit d9850952 authored by mmu_man's avatar mmu_man

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

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8634 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a1a3950c
......@@ -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