diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2023-08-08 09:16:02 +0000 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2023-08-08 11:16:45 +0000 |
commit | bcd90622c73cdc090877a2f8173cf50a8e8e611f (patch) | |
tree | 83484aa86627b5fa6d61d92a6876bd0f7436d2b4 /lang/fsharp | |
parent | lang/mono5.10: sync with lang/mono (diff) |
lang/mono*: add compat symlink for devel/msbuild < 16
/usr/local/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets(331,5): error MSB4019: The imported project "/usr/local/lib/mono/msbuild/15.0/bin/Roslyn/Microsoft.CSharp.Core.targets" was not found. Confirm that the path in the <Import> declaration is correct, and that the file exists on disk.
PR: 256342
Suggested by: Marcin Cieślak
Regressed by: https://github.com/mono/mono/commit/1717687e16dd
Diffstat (limited to 'lang/fsharp')
-rw-r--r-- | lang/fsharp/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lang/fsharp/Makefile b/lang/fsharp/Makefile index 7e1d2c4717b2..397f49249e98 100644 --- a/lang/fsharp/Makefile +++ b/lang/fsharp/Makefile @@ -32,12 +32,8 @@ do-test: .include <bsd.port.pre.mk> -.if defined(MONO_DEFAULT) -.if ${MONO_DEFAULT} > 6 +.if defined(MONO_DEFAULT) && ${MONO_DEFAULT} > 6 BROKEN= fails to build with Mono version ${MONO_DEFAULT}: A unique overload for method 'GetFileNameWithoutExtension' could not be determined based on type information prior to this program point -.elif ${MONO_DEFAULT} > 5.10 -BROKEN= fails to build with Mono version ${MONO_DEFAULT}: The type 'HashSet' is not defined -.endif .endif .include <bsd.port.post.mk> |