mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 10:45:30 +00:00
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:
parent
84993d237f
commit
bfc89a1555
14
configure.ac
14
configure.ac
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue