From 0d13277c0f2f03b51395366053c861ece494b91a Mon Sep 17 00:00:00 2001 From: mpeterv Date: Sat, 5 Dec 2015 22:58:07 +0300 Subject: [PATCH] Do not pass PREFIX when building LuaJIT Since default paths are patched, there is no point. --- hererocks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hererocks.py b/hererocks.py index db01877..1499799 100755 --- a/hererocks.py +++ b/hererocks.py @@ -531,7 +531,7 @@ class LuaJIT(Lua): run_command("msvcbuild.bat") os.chdir("..") else: - run_command("make", "PREFIX=" + quote(opts.location)) + run_command("make") def make_install(self): luajit_file = exe("luajit")