summaryrefslogtreecommitdiff
path: root/modules/gdnative
diff options
context:
space:
mode:
authorKarroffel <therzog@mail.de>2017-06-16 15:48:05 +0200
committerKarroffel <therzog@mail.de>2017-06-16 15:48:05 +0200
commitf0cf9460632b3b01c605aeee3d0b81473cfb76b6 (patch)
tree173f4c52e73b11cb146e5ffc744b103da93ec03a /modules/gdnative
parent9ff7bd46cc1aa0fe5aa0decbbf41ed0c10136f98 (diff)
[GDNative] corrected typo for Mac library ext.
Seems like the extension is .dylib and not .dynlib. This should make it easier to select files from the editor.
Diffstat (limited to 'modules/gdnative')
-rw-r--r--modules/gdnative/gdnative.cpp6
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",