From 8a2820e35c5ad841d4c3aae3af8b1ace37d22660 Mon Sep 17 00:00:00 2001 From: Ryan Lucia Date: Wed, 12 Aug 2020 12:35:19 -0400 Subject: [PATCH] [mono] Fix configure to actually disable dllmap on non-mobile platforms (#40686) `$enable_monodroid` and `$enable_monotouch` are set to no, not an empty string --- src/mono/configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mono/configure.ac b/src/mono/configure.ac index 8a9996e..72abca2 100644 --- a/src/mono/configure.ac +++ b/src/mono/configure.ac @@ -1418,7 +1418,7 @@ if test x$with_runtime_preset = xnetcore; then mono_feature_disable_perfcounters='yes' mono_feature_disable_attach='yes' mono_feature_disable_cfgdir_config='yes' - if test "x$enable_monodroid" = "x" -a "x$enable_monotouch" = "x"; then + if test "x$enable_monodroid" = "xno" -a "x$enable_monotouch" = "xno"; then mono_feature_disable_dllmap='yes' # FIXME: the mobile products use this fi disable_mono_native=yes -- 2.7.4