diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-05-06 03:27:53 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-05-06 03:27:53 +0200 |
commit | cde55897178fb79d194f9f4951a220fb7ca4cda9 (patch) | |
tree | 1d64798773e321b878932cbc02b79a58488da60a /configure | |
parent | ccd77fe59bba01ae791f84cb08a3eff0cd76c11e (diff) | |
download | ffmpeg-cde55897178fb79d194f9f4951a220fb7ca4cda9.tar.gz |
Silence a warning if pkg_config is not installed.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -761,7 +761,7 @@ check_pkg_config(){ headers="$2" funcs="$3" shift 3 - $pkg_config --exists $pkg || return + $pkg_config --exists $pkg 2>/dev/null || return pkg_cflags=$($pkg_config --cflags $pkg) pkg_libs=$($pkg_config --libs $pkg) check_func_headers "$headers" "$funcs" $pkg_cflags $pkg_libs "$@" && |