From 67493d7a4426c44b3f6ae7d5f2d1b9fa0182f062 Mon Sep 17 00:00:00 2001 From: om-ghante Date: Sat, 11 Apr 2026 02:53:24 +0530 Subject: [PATCH] build: fix stray debug string in LIEF defines A stray debug string 'testtttt' in lief.gyp's defines list was missing a trailing comma, causing it to be concatenated with the adjacent MBEDTLS_CONFIG_FILE define via implicit string concatenation. This resulted in the compiler receiving: -DtestttttMBEDTLS_CONFIG_FILE="config/mbedtls/config.h" instead of: -DMBEDTLS_CONFIG_FILE="config/mbedtls/config.h" Remove the stray string so that MBEDTLS_CONFIG_FILE is defined correctly. Refs: https://github.com/nodejs/node/issues/62129 --- deps/LIEF/lief.gyp | 1 - 1 file changed, 1 deletion(-) diff --git a/deps/LIEF/lief.gyp b/deps/LIEF/lief.gyp index 3864c0e538a588..783e97c181d897 100644 --- a/deps/LIEF/lief.gyp +++ b/deps/LIEF/lief.gyp @@ -443,7 +443,6 @@ }, 'defines': [ 'LIEF_STATIC', - 'testtttt' 'MBEDTLS_CONFIG_FILE="config/mbedtls/config.h"', 'MBEDTLS_NO_PLATFORM_ENTROPY', 'SPDLOG_DISABLE_DEFAULT_LOGGER',