diff options
author | hexcoder- <heiko@hexco.de> | 2020-03-21 10:46:23 +0100 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2020-03-21 10:46:23 +0100 |
commit | dabce05ec601b07ba04ef1056e40edfe54a41111 (patch) | |
tree | df4a9a2f98e579157bc072af02e911bf7e6c9e7e | |
parent | 993bf03af90bca5e155251df271d536d5eb1d215 (diff) | |
download | afl++-dabce05ec601b07ba04ef1056e40edfe54a41111.tar.gz |
qemu_mode/build script: add more missing prereqs
-rwxr-xr-x | qemu_mode/build_qemu_support.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qemu_mode/build_qemu_support.sh b/qemu_mode/build_qemu_support.sh index 8dff0461..021e107b 100755 --- a/qemu_mode/build_qemu_support.sh +++ b/qemu_mode/build_qemu_support.sh @@ -63,7 +63,7 @@ if [ ! -f "../afl-showmap" ]; then fi PREREQ_NOTFOUND= -for i in libtool wget python automake autoconf sha384sum bison iconv patch; do +for i in libtool wget python automake autoconf sha384sum bison flex iconv patch pkg-config; do T=`type "$i" | awk '{print $NF}' 2>/dev/null` |