Merge pull request #61352 from Faless/ext/linux_export

[Editor] Fix GDExtension GNU/Linux export.
This commit is contained in:
Rémi Verschelde 2022-05-25 01:17:59 +02:00 committed by GitHub
commit 360119ffbf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 9 deletions

View file

@ -44,7 +44,7 @@ void register_linuxbsd_exporter() {
platform->set_name("Linux/X11");
platform->set_extension("x86_32");
platform->set_extension("x86_64", "binary_format/64_bits");
platform->set_os_name("LinuxBSD");
platform->set_os_name("Linux");
platform->set_chmod_flags(0755);
EditorExport::get_singleton()->add_export_platform(platform);