diff options
author | Andrea Fioraldi <andreafioraldi@gmail.com> | 2019-11-24 23:02:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-24 23:02:06 +0100 |
commit | 7f0fe3b7d2f5d4ad4698e31e1f4218c14ee11c03 (patch) | |
tree | 11ea11faab059c50a5c53277241d5efb6a32f7a5 | |
parent | ccb156c704f3463fa0e1cf19f7afed1293b294bf (diff) | |
parent | 2f209414ef77d8886918ccdb0157219257922d57 (diff) | |
download | afl++-7f0fe3b7d2f5d4ad4698e31e1f4218c14ee11c03.tar.gz |
Merge pull request #116 from geeksonsecurity/unicorn-build-error
Fix unicorn 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 |