Skip to content

Commit d080801

Browse files
authored
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 PR-URL: #62683 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
1 parent fc4b334 commit d080801

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)