1
mirror of https://github.com/jedisct1/libsodium.git synced 2024-12-19 18:15:18 -07:00

egrep -> grep -E

This commit is contained in:
Frank Denis 2023-11-23 13:36:02 +01:00
parent 6669f95b9f
commit 2945e73efd
2 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ fi
--with-sysroot="${TOOLCHAIN_DIR}/sysroot" || exit 1 --with-sysroot="${TOOLCHAIN_DIR}/sysroot" || exit 1
if [ "$NDK_PLATFORM" != "$NDK_PLATFORM_COMPAT" ]; then if [ "$NDK_PLATFORM" != "$NDK_PLATFORM_COMPAT" ]; then
egrep '^#define ' config.log | sort -u >config-def-compat.log grep -E '^#define ' config.log | sort -u >config-def-compat.log
echo echo
echo "Configuring again for platform [${NDK_PLATFORM}]" echo "Configuring again for platform [${NDK_PLATFORM}]"
echo echo

View File

@ -5,7 +5,7 @@ CT='ct.c'
echo '#include <assert.h>' > "$CT" echo '#include <assert.h>' > "$CT"
echo '#include <sodium.h>' >> "$CT" echo '#include <sodium.h>' >> "$CT"
echo 'int main(void) {' >> "$CT" echo 'int main(void) {' >> "$CT"
for macro in $(egrep -r '#define crypto_.*BYTES(_[A-Z]+)? ' src/libsodium/include | \ for macro in $(grep -Er '#define crypto_.*BYTES(_[A-Z]+)? ' src/libsodium/include | \
cut -d: -f2- | cut -d' ' -f2 | \ cut -d: -f2- | cut -d' ' -f2 | \
fgrep -v edwards25519sha512batch | sort -u); do fgrep -v edwards25519sha512batch | sort -u); do
func=$(echo "$macro" | tr A-Z a-z) func=$(echo "$macro" | tr A-Z a-z)