From 1e262b5d58ad1407c3dbc8c5168b425103a66980 Mon Sep 17 00:00:00 2001 From: hqzing Date: Tue, 6 Jan 2026 10:51:58 +0800 Subject: [PATCH] build: fix misplaced comma in ldflags --- node.gypi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node.gypi b/node.gypi index 4f35b103449fc3..8aded9e48c6141 100644 --- a/node.gypi +++ b/node.gypi @@ -412,7 +412,7 @@ 'conditions': [ ['OS in "linux freebsd openharmony" and node_shared=="false"', { 'ldflags': [ - '-Wl,--whole-archive,' + '-Wl,--whole-archive', '<(obj_dir)/deps/openssl/<(openssl_product)', '-Wl,--no-whole-archive', ],