From c2ffdb05d4bffd75fd28fb791882c14ec6758b8c Mon Sep 17 00:00:00 2001 From: Nathan Warden Date: Thu, 15 Jan 2015 13:00:33 -0500 Subject: [PATCH] Set the default Linux extension to nothing. --- platform/x11/export/export.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/x11/export/export.cpp b/platform/x11/export/export.cpp index b17b92bccfe..bed57fbe9f0 100644 --- a/platform/x11/export/export.cpp +++ b/platform/x11/export/export.cpp @@ -11,7 +11,7 @@ void register_x11_exporter() { { Ref exporter = Ref( memnew(EditorExportPlatformPC) ); - exporter->set_binary_extension("bin"); + exporter->set_binary_extension(""); exporter->set_release_binary32("linux_x11_32_release"); exporter->set_debug_binary32("linux_x11_32_debug"); exporter->set_release_binary64("linux_x11_64_release");