summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgnacio Etcheverry <ignalfonsore@gmail.com>2018-02-22 13:39:52 +0100
committerIgnacio Etcheverry <ignalfonsore@gmail.com>2018-02-22 13:39:52 +0100
commita38b59b656e6834d466df37379266c29d6364490 (patch)
tree04c886444a4996cf657e80365c35ef2245228e1c
parent9fd606c549ac53ba2ab1a877be564b1fb56531db (diff)
EditorExport: Allow export plugins to add shared libraries
-rw-r--r--editor/editor_export.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/editor/editor_export.cpp b/editor/editor_export.cpp
index c9ac62a74d..badcfc002b 100644
--- a/editor/editor_export.cpp
+++ b/editor/editor_export.cpp
@@ -274,8 +274,6 @@ void EditorExportPlatform::gen_debug_flags(Vector<String> &r_flags, int p_flags)
}
Error EditorExportPlatform::_save_pack_file(void *p_userdata, const String &p_path, const Vector<uint8_t> &p_data, int p_file, int p_total) {
- if (p_path.ends_with(".so") || p_path.ends_with(".dylib") || p_path.ends_with(".dll"))
- return OK;
PackData *pd = (PackData *)p_userdata;