From dc09cf0c397ec41a24ce7df0e44a1d0e0e0264b7 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Tue, 29 Jul 2025 11:31:45 +0500 Subject: [PATCH] public: fix incorrect logic where libc extension defines were exported without an actual check --- public/wscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/wscript b/public/wscript index 3840b7b0..da8308f9 100644 --- a/public/wscript +++ b/public/wscript @@ -132,7 +132,8 @@ def configure(conf): ) for export in exports_list: - conf.export_define(export) + if conf.env[export]: + conf.export_define(export) # kill temporary uselib del conf.env.DEFINES_export