diff options
author | hexcoder <hexcoder-@users.noreply.github.com> | 2020-05-13 17:39:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-13 17:39:00 +0200 |
commit | bd94d5fce774e40d874d6efc941998bacad1f933 (patch) | |
tree | a012b5af4503b001addd9b6f9bb0ca59258cacbc | |
parent | b6be9060826a8617378e7ec1ee128057b51d8f85 (diff) | |
download | afl++-bd94d5fce774e40d874d6efc941998bacad1f933.tar.gz |
unicornafl build script: python version is critical
-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 bbfd151c..805ac1ea 100755 --- a/unicorn_mode/build_unicorn_support.sh +++ b/unicorn_mode/build_unicorn_support.sh @@ -65,7 +65,7 @@ if [ ! -f "../afl-showmap" ]; then fi -PYTHONBIN=`command -v python3 || command -v python || echo python` +PYTHONBIN=`command -v python || command -v python3 || command -v python2 || echo python` MAKECMD=make EASY_INSTALL='easy_install' TARCMD=tar |