From dd7811e5bca71033a8d50a9b6c1a278d0fddce65 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Sun, 16 Nov 2025 18:45:49 +0500 Subject: [PATCH] filesystem: wscript: do not link library_suffix on PSVita --- filesystem/wscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/filesystem/wscript b/filesystem/wscript index fa60d9a5..8e131010 100644 --- a/filesystem/wscript +++ b/filesystem/wscript @@ -33,11 +33,11 @@ def configure(conf): def build(bld): bld(name = 'filesystem_includes', export_includes = '.') - libs = [ 'filesystem_includes', 'sdk_includes', 'werror', 'library_suffix' ] + libs = [ 'filesystem_includes', 'sdk_includes', 'werror' ] # on PSVita do not link any libraries that are already in the main executable, but add the includes target if bld.env.DEST_OS != 'psvita': - libs += [ 'public', 'ANDROID' ] + libs += [ 'public', 'ANDROID', 'library_suffix' ] bld.shlib(target = 'filesystem_stdio', features = 'seq',