From bccbfbf62637ae7925eefaaf735a66fb5535391d Mon Sep 17 00:00:00 2001 From: mpeterv Date: Sun, 3 Apr 2016 22:17:33 +0300 Subject: [PATCH] Fix cmake generator arch suffix --- hererocks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hererocks.py b/hererocks.py index 7c597cd..c44ab99 100755 --- a/hererocks.py +++ b/hererocks.py @@ -968,7 +968,7 @@ class LuaRocks(Program): vs_arch = lua_identifiers["vs arch"] vs_short_version = vs_year_to_version[vs_year][:-2] return "Visual Studio {} 20{}{}".format( - vs_short_version, vs_year, "Win64" if vs_arch == "x64" else "x86") + vs_short_version, vs_year, " Win64" if vs_arch == "x64" else "") def build(self): lua_identifiers = self.all_identifiers.get("lua", self.all_identifiers.get("LuaJIT"))