about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndrea Fioraldi <andreafioraldi@gmail.com>2019-11-24 23:02:06 +0100
committerGitHub <noreply@github.com>2019-11-24 23:02:06 +0100
commit7f0fe3b7d2f5d4ad4698e31e1f4218c14ee11c03 (patch)
tree11ea11faab059c50a5c53277241d5efb6a32f7a5
parentccb156c704f3463fa0e1cf19f7afed1293b294bf (diff)
parent2f209414ef77d8886918ccdb0157219257922d57 (diff)
downloadafl++-7f0fe3b7d2f5d4ad4698e31e1f4218c14ee11c03.tar.gz
Merge pull request #116 from geeksonsecurity/unicorn-build-error
Fix unicorn build error on macOS
-rwxr-xr-xunicorn_mode/build_unicorn_support.sh2
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