diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2013-09-03 22:15:23 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2013-09-04 09:47:06 +0200 |
commit | 7f9e893f56db52078e0f46677ed337b2e25fa94d (patch) | |
tree | 1d2e39886fc444a2e2b3b31ef94fd6f8e3bca701 | |
parent | af11fa5409cc72fc45ca7f3527400beca10967b9 (diff) | |
download | ffmpeg-7f9e893f56db52078e0f46677ed337b2e25fa94d.tar.gz |
build: Report an error message when a pc file is not found
Ease tracking path problems.
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -885,7 +885,7 @@ check_pkg_config(){ headers="$2" funcs="$3" shift 3 - $pkg_config --exists $pkg || return + check_cmd $pkg_config --exists --print-errors $pkg || return pkg_cflags=$($pkg_config --cflags $pkg) pkg_libs=$($pkg_config --libs $pkg) check_func_headers "$headers" "$funcs" $pkg_cflags $pkg_libs "$@" && |