diff options
author | David Carlier <devnexen@gmail.com> | 2019-11-17 10:12:15 +0000 |
---|---|---|
committer | David Carlier <devnexen@gmail.com> | 2019-11-17 10:12:15 +0000 |
commit | b6e51a5cd684c0a2fc1118d6cc48ca89f5f6ab6c (patch) | |
tree | 9df594a6e149ca2a02ab27e0701e45d60e145da8 | |
parent | a8f6ce5475fc369deea40ac566eb56183f5450ba (diff) | |
download | afl++-b6e51a5cd684c0a2fc1118d6cc48ca89f5f6ab6c.tar.gz |
unicorn mode, parallel job cmd fix for openbsd
-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..7cdbff0a 100755 --- a/unicorn_mode/build_unicorn_support.sh +++ b/unicorn_mode/build_unicorn_support.sh @@ -97,7 +97,7 @@ if [ "$PLT" = "NetBSD" ] || [ "$PLT" = "OpenBSD" ]; then CKSUMCMD="cksum -a sha384 -q" PYTHONBIN=python2.7 MAKECMD=gmake - CORES=`sysctl hw.ncpu | cut -d' ' -f2` + CORES=`sysctl hw.ncpu | cut -d'=' -f2` TARCMD=gtar EASY_INSTALL=easy_install-2.7 fi |