diff options
author | Wizche <sergio.paganoni@gmail.com> | 2019-11-24 22:12:15 +0100 |
---|---|---|
committer | Wizche <sergio.paganoni@gmail.com> | 2019-11-24 22:12:15 +0100 |
commit | 2f209414ef77d8886918ccdb0157219257922d57 (patch) | |
tree | 11ea11faab059c50a5c53277241d5efb6a32f7a5 | |
parent | ccb156c704f3463fa0e1cf19f7afed1293b294bf (diff) | |
download | afl++-2f209414ef77d8886918ccdb0157219257922d57.tar.gz |
Fix build error on macOS
-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 589ab852..d0bfbfbe 100755 --- a/unicorn_mode/build_unicorn_support.sh +++ b/unicorn_mode/build_unicorn_support.sh @@ -198,7 +198,7 @@ echo "[*] Installing Unicorn python bindings..." cd bindings/python || exit 1 if [ -z "$VIRTUAL_ENV" ]; then echo "[*] Info: Installing python unicorn using --user" - $PYTHONBIN setup.py install --user || exit 1 + $PYTHONBIN setup.py install --user --prefix=|| exit 1 else echo "[*] Info: Installing python unicorn to virtualenv: $VIRTUAL_ENV" $PYTHONBIN setup.py install || exit 1 |