setupenv: Remove check for xxd

`xxd` is no longer needed as arraydump has been rewritten in C++
Soda
BodgeMaster 2022-10-05 05:31:37 +02:00
parent 3b4c125ca2
commit 1e5051b503
1 changed files with 0 additions and 7 deletions

View File

@ -106,13 +106,6 @@ if [ -z "$CXX" ]; then
fi
fi
if command -v xxd > /dev/null 2>&1; then
true
else
echo "WARNING: \`xxd\` is needed for some tool scripts."
MISSING_DEPS=1
fi
if [ "$MISSING_DEPS" -eq 0 ]; then
echo "All set."
fi