From dc2aeb5b40eedc2a5a6d06a2494750e803e33d09 Mon Sep 17 00:00:00 2001 From: Donald Stufft <donald.stufft@gmail.com> Date: Sat, 23 Feb 2013 02:28:52 -0500 Subject: [PATCH] Run make install with sudo --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index b432afef..70487508 100644 --- a/tasks.py +++ b/tasks.py @@ -38,7 +38,7 @@ def install_nacl(library): os.chdir(os.path.expanduser("~/libsodium-0.2/")) run("./configure --disable-debug --disable-dependency-tracking") run("make") - run("make install") + run("sudo make install") finally: os.chdir(curdir) -- GitLab