diff options
author | van Hauser <vh@thc.org> | 2024-08-20 12:51:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-20 12:51:03 +0200 |
commit | 598a3c6b5e24bd33e84b914e145810d39f88adf6 (patch) | |
tree | 19f5b05c6b151790c492f0d5ff0e532614c4216d | |
parent | f27cbdb79349d6f4f6e859a356758b634be72652 (diff) | |
parent | 097828391530c7858ba80024d69c4efdad2e2fb2 (diff) | |
download | afl++-598a3c6b5e24bd33e84b914e145810d39f88adf6.tar.gz |
Merge pull request #2192 from AFLplusplus/dev
fix unicorn build
-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 a21d05eb..1be399ff 100755 --- a/unicorn_mode/build_unicorn_support.sh +++ b/unicorn_mode/build_unicorn_support.sh @@ -199,7 +199,7 @@ echo "[+] Build process successful!" echo "[*] Installing Unicorn python bindings..." XOPT= -$PYTHONBIN -m pip install --help 2>/dev/null | grep -q break-system-packages && XOPT=--break-system-packages +#$PYTHONBIN -m pip install --help 2>/dev/null | grep -q break-system-packages && XOPT=--break-system-packages cd unicorn/bindings/python || exit 1 if [ -z "$VIRTUAL_ENV" ]; then echo "[*] Info: Installing python unicornafl using --user" |