build: Only check the mono prefix when using mono

This avoids strange message at the end of configure with .Net
This commit is contained in:
Bertrand Lorentz 2014-02-23 16:59:50 +01:00
parent 84993d237f
commit bfc89a1555

View File

@ -294,10 +294,12 @@ if test "x$enable_monodoc" = "xyes" -a "x$doc_sources_dir" != "x$prefix/lib/mono
fi
echo "---"
mono_prefix=`pkg-config --variable=prefix mono`
if test "x$mono_prefix" != "x$prefix"; then
AC_WARN(Prefix to use ($prefix) is not the same as Mono's ($mono_prefix). Consider using
./configure --prefix=$mono_prefix
See the README for more information.
)
if test "x$has_mono" = "xtrue"; then
mono_prefix=`pkg-config --variable=prefix mono`
if test "x$mono_prefix" != "x$prefix"; then
AC_MSG_WARN(Prefix to use ($prefix) is not the same as Mono's ($mono_prefix).
Consider using ./configure --prefix=$mono_prefix
See the README for more information.
)
fi
fi