Skip to content

Commit 67493d7

Browse files
committed
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: #62129
1 parent 9f0a3e6 commit 67493d7

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

deps/LIEF/lief.gyp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,6 @@
443443
},
444444
'defines': [
445445
'LIEF_STATIC',
446-
'testtttt'
447446
'MBEDTLS_CONFIG_FILE="config/mbedtls/config.h"',
448447
'MBEDTLS_NO_PLATFORM_ENTROPY',
449448
'SPDLOG_DISABLE_DEFAULT_LOGGER',

0 commit comments

Comments
 (0)