Skip to content
This repository has been archived by the owner on Mar 2, 2023. It is now read-only.

Commit

Permalink
clean-up code
Browse files Browse the repository at this point in the history
  • Loading branch information
wideglide committed Nov 8, 2018
1 parent 676395b commit 9028f1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def build_pintool():
raise ValueError("Unable to build pintool")
my_env = os.environ.copy()
my_env["TARGET"] = "ia32"
if subprocess.call(["make", "-C", "qsym/pintool", "-j", str(mp.cpu_count())],env=my_env) != 0:
if subprocess.call(["make", "-C", "qsym/pintool", "-j", str(mp.cpu_count())], env=my_env) != 0:
raise ValueError("Unable to build pintool")
if int(open("/proc/sys/kernel/yama/ptrace_scope").read()) != 0:
raise ValueError("Please disable yama/ptrace_scope:\n" \
Expand Down

0 comments on commit 9028f1e

Please sign in to comment.