aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xqemu_mode/build_qemu_support.sh2
-rwxr-xr-xunicorn_mode/build_unicorn_support.sh6
2 files changed, 4 insertions, 4 deletions
diff --git a/qemu_mode/build_qemu_support.sh b/qemu_mode/build_qemu_support.sh
index afd82f72..9da51cfd 100755
--- a/qemu_mode/build_qemu_support.sh
+++ b/qemu_mode/build_qemu_support.sh
@@ -44,7 +44,7 @@ echo "[*] Performing basic sanity checks..."
if [ ! "`uname -s`" = "Linux" ]; then
echo "[-] Error: QEMU instrumentation is supported only on Linux."
- exit 1
+ exit 0
fi
diff --git a/unicorn_mode/build_unicorn_support.sh b/unicorn_mode/build_unicorn_support.sh
index 1c176bca..e46cf54f 100755
--- a/unicorn_mode/build_unicorn_support.sh
+++ b/unicorn_mode/build_unicorn_support.sh
@@ -73,19 +73,19 @@ if [ "$PLT" = "Linux" ]; then
fi
if [ "$PLT" = "Darwin" ]; then
- CORES=`sysctl hw.ncpu | cut -d' ' -f2`
+ CORES=`sysctl -n hw.ncpu`
TARCMD=tar
fi
if [ "$PLT" = "FreeBSD" ]; then
MAKECMD=gmake
- CORES=`sysctl hw.ncpu | cut -d' ' -f2`
+ CORES=`sysctl -n hw.ncpu`
TARCMD=gtar
fi
if [ "$PLT" = "NetBSD" ] || [ "$PLT" = "OpenBSD" ]; then
MAKECMD=gmake
- CORES=`sysctl hw.ncpu | cut -d'=' -f2`
+ CORES=`sysctl -n hw.ncpu`
TARCMD=gtar
fi