diff options
author | David CARLIER <devnexen@gmail.com> | 2020-02-29 13:39:29 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-29 14:39:29 +0100 |
commit | 9ddd7e0e3f6f9dc8b837e96b508db7fd1f9a1a19 (patch) | |
tree | 785d2d16144ebe978d95003565763c2fce4cc948 | |
parent | 6730b6a15ad102ee988614202147bf606e1b7fd5 (diff) | |
download | afl++-9ddd7e0e3f6f9dc8b837e96b508db7fd1f9a1a19.tar.gz |
wget is no longer necessary for unicornafl which is cloned now. (#217)
-rwxr-xr-x | unicorn_mode/build_unicorn_support.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unicorn_mode/build_unicorn_support.sh b/unicorn_mode/build_unicorn_support.sh index ecd80d95..f194a9ae 100755 --- a/unicorn_mode/build_unicorn_support.sh +++ b/unicorn_mode/build_unicorn_support.sh @@ -90,7 +90,7 @@ if [ "$PLT" = "NetBSD" ] || [ "$PLT" = "OpenBSD" ]; then TARCMD=gtar fi -for i in wget $PYTHONBIN automake autoconf git $MAKECMD $TARCMD; do +for i in $PYTHONBIN automake autoconf git $MAKECMD $TARCMD; do T=`which "$i" 2>/dev/null` |