From 9760984638d241531ff8a9eef259aad2272f0f75 Mon Sep 17 00:00:00 2001 From: Mike Pall Date: Sun, 10 Sep 2023 05:23:10 +0200 Subject: [PATCH] Allow path overrides in genversion.lua with minilua, too. Thanks to arch1t3cht. #1067 --- src/host/genversion.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/src/host/genversion.lua b/src/host/genversion.lua index 5ead4c2b..28f7206c 100644 --- a/src/host/genversion.lua +++ b/src/host/genversion.lua @@ -5,6 +5,7 @@ -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- +local arg = {...} local FILE_ROLLING_H = arg[1] or "luajit_rolling.h" local FILE_RELVER_TXT = arg[2] or "luajit_relver.txt" local FILE_LUAJIT_H = arg[3] or "luajit.h"