mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-02 05:56:46 +08:00
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:
2
configure
vendored
2
configure
vendored
@ -1196,7 +1196,7 @@ strip="${cross_prefix}${strip}"
|
|||||||
|
|
||||||
# Disable core dumps so that intentional execution of broken apps doesn't
|
# Disable core dumps so that intentional execution of broken apps doesn't
|
||||||
# pollute the current directory.
|
# pollute the current directory.
|
||||||
ulimit -c 0
|
ulimit -c 0 >/dev/null 2>&1
|
||||||
|
|
||||||
# we need to build at least one lib type
|
# we need to build at least one lib type
|
||||||
if disabled_all static shared; then
|
if disabled_all static shared; then
|
||||||
|
Reference in New Issue
Block a user