diff options
author | Thomas Herzog <karroffel@users.noreply.github.com> | 2017-06-16 15:52:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-16 15:52:56 +0200 |
commit | 7ae36d4c47c9ec63ea67a730566e782a4a4cbbf3 (patch) | |
tree | 173f4c52e73b11cb146e5ffc744b103da93ec03a /modules/gdnative/gdnative.cpp | |
parent | 9ff7bd46cc1aa0fe5aa0decbbf41ed0c10136f98 (diff) | |
parent | f0cf9460632b3b01c605aeee3d0b81473cfb76b6 (diff) | |
download | redot-engine-7ae36d4c47c9ec63ea67a730566e782a4a4cbbf3.tar.gz |
Merge pull request #9211 from karroffel/gdnative-macos-typo
[GDNative] corrected typo for Mac library ext.
Diffstat (limited to 'modules/gdnative/gdnative.cpp')
-rw-r--r-- | modules/gdnative/gdnative.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/gdnative/gdnative.cpp b/modules/gdnative/gdnative.cpp index 9c8625c1e0..706b81f7a3 100644 --- a/modules/gdnative/gdnative.cpp +++ b/modules/gdnative/gdnative.cpp @@ -516,9 +516,9 @@ static const char *_dl_platforms_info[] = { "unix|server|so|Server", "unix|android|so|Android", "unix|haiku|so|Haiku", // Right? - "|mac|dynlib|Mac", - "mac|ios|dynlib|iOS", - "mac|osx|dynlib|OSX", + "|mac|dylib|Mac", + "mac|ios|dylib|iOS", + "mac|osx|dylib|OSX", "|html5|js|HTML5", "|windows|dll|Windows", "windows|uwp|dll|UWP", |