Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'packaging/MacSDK/patches/fsharp-IsPathRooted-type-inference.patch')
-rw-r--r--packaging/MacSDK/patches/fsharp-IsPathRooted-type-inference.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/packaging/MacSDK/patches/fsharp-IsPathRooted-type-inference.patch b/packaging/MacSDK/patches/fsharp-IsPathRooted-type-inference.patch
deleted file mode 100644
index 06dd3e82adc..00000000000
--- a/packaging/MacSDK/patches/fsharp-IsPathRooted-type-inference.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-commit c37fce5b3019c7a150203fc3a484885591b194de
-Author: Alexis Christoforides <alexis@thenull.net>
-Date: Sun Dec 2 00:10:24 2018 -0500
-
- Help Path.IsPathRooted method overload selection.
-
- .NET Core, and Mono after merging https://github.com/mono/mono/pull/11342, introduce ambiguity with a new overload.
-
-diff --git a/src/scripts/scriptlib.fsx b/src/scripts/scriptlib.fsx
-index cc797e305..699c7bb93 100644
---- a/src/scripts/scriptlib.fsx
-+++ b/src/scripts/scriptlib.fsx
-@@ -92,7 +92,7 @@ module Scripting =
-
- module Process =
-
-- let processExePath baseDir exe =
-+ let processExePath baseDir (exe:string) =
- if Path.IsPathRooted(exe) then exe
- else
- match Path.GetDirectoryName(exe) with