Move 3rdparty mentions to a separate line
This makes it easier to merge changes related to adding or removing 3rdparty items. No semantic change.
This commit is contained in:
parent
4d8c836cdc
commit
9ab9621511
1 changed files with 2 additions and 1 deletions
|
@ -86,7 +86,8 @@ printf "Likely typos: "
|
|||
sort -u actual-macros enum-consts > _caps
|
||||
HEADERS=$( ls include/mbedtls/*.h include/psa/*.h | egrep -v 'compat-1\.3\.h' )
|
||||
HEADERS="$HEADERS 3rdparty/everest/include/everest/everest.h 3rdparty/everest/include/everest/x25519.h"
|
||||
LIBRARY="$( ls library/*.c ) 3rdparty/everest/library/everest.c 3rdparty/everest/library/x25519.c"
|
||||
LIBRARY="$( ls library/*.c )"
|
||||
LIBRARY="$LIBRARY 3rdparty/everest/library/everest.c 3rdparty/everest/library/x25519.c"
|
||||
NL='
|
||||
'
|
||||
sed -n 's/MBED..._[A-Z0-9_]*/\'"$NL"'&\'"$NL"/gp \
|
||||
|
|
Loading…
Reference in a new issue