Skip to content

Commit

Permalink
Remove duplicate s2n-bignum prefix include option (aws#1909)
Browse files Browse the repository at this point in the history
Accidentally added the same option twice in aws#1903 when invoking the pre-processor. Not fatal, but also not necessary... So, remove the duplicate option.
  • Loading branch information
torben-hansen authored Oct 8, 2024
1 parent c64ec41 commit 49215e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto/fipsmodule/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ function(s2n_asm_cpreprocess dest src)
add_custom_command(
OUTPUT ${dest}
COMMAND ${CMAKE_COMMAND} -E make_directory ${dir}
COMMAND ${CMAKE_ASM_COMPILER} ${TARGET} ${CMAKE_ASM_FLAGS} -E ${S2N_BIGNUM_DIR}/${src} -I${S2N_BIGNUM_INCLUDE_DIR} ${S2N_BIGNUM_PREFIX_INCLUDE} ${S2N_BIGNUM_PREFIX_INCLUDE} -DS2N_BN_HIDE_SYMBOLS | tr \"\;\" \"\\n\" > ${dest}
COMMAND ${CMAKE_ASM_COMPILER} ${TARGET} ${CMAKE_ASM_FLAGS} -E ${S2N_BIGNUM_DIR}/${src} -I${S2N_BIGNUM_INCLUDE_DIR} ${S2N_BIGNUM_PREFIX_INCLUDE} -DS2N_BN_HIDE_SYMBOLS | tr \"\;\" \"\\n\" > ${dest}
DEPENDS
${S2N_BIGNUM_DIR}/${src}
WORKING_DIRECTORY .
Expand Down

0 comments on commit 49215e8

Please sign in to comment.