10000 revert automatically added 'm' suffix for *nix default dll name · pythonnet/pythonnet@b7410b6 · GitHub
[go: up one dir, main page]

Skip to content

Commit b7410b6

Browse files
committed
revert automatically added 'm' suffix for *nix default dll name
1 parent 17040fe commit b7410b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/runtime/runtime.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ private static string GetDefaultDllName(Version version)
5454
string prefix = RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? "" : "lib";
5555
string suffix = RuntimeInformation.IsOSPlatform(OSPlatform.Windows)
5656
? Invariant($"{version.Major}{version.Minor}")
57-
: Invariant($"{version.Major}.{version.Minor}m");
57+
: Invariant($"{version.Major}.{version.Minor}");
5858
string ext = RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? ".dll"
5959
: RuntimeInformation.IsOSPlatform(OSPlatform.OSX) ? ".dylib"
6060
: ".so";

0 commit comments

Comments
 (0)
0