Fix test for pkg-config

This commit is contained in:
Travis Cross 2014-05-12 13:50:21 +00:00
parent 9a1c4f6827
commit c006db6fc6
1 changed files with 1 additions and 1 deletions

View File

@ -1126,7 +1126,7 @@ case $host in
;;
esac
if ! test -x "$PKG_CONFIG" || ! test -x "$(which pkg-config)"; then
if ! (test -x "$PKG_CONFIG" || test -x "$(which pkg-config)"); then
AC_MSG_ERROR([You need to install pkg-config to configure FreeSWITCH.])
fi