[mono] Fix configure to actually disable dllmap on non-mobile platforms (#40686)
authorRyan Lucia <rylucia@microsoft.com>
Wed, 12 Aug 2020 16:35:19 +0000 (12:35 -0400)
committerGitHub <noreply@github.com>
Wed, 12 Aug 2020 16:35:19 +0000 (12:35 -0400)
`$enable_monodroid` and `$enable_monotouch` are set to no, not an empty string

src/mono/configure.ac

index 8a9996e..72abca2 100644 (file)
@@ -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