From 045cb437bace81becd10c9afd58ca8ade4c8018f Mon Sep 17 00:00:00 2001 From: Jeremy Baxter Date: Thu, 13 Jun 2024 11:17:57 +1200 Subject: [PATCH] configure: create config.mk before calling Lua's makefile https://builds.sr.ht/~jeremy/job/1249641 --- configure | 1 + 1 file changed, 1 insertion(+) diff --git a/configure b/configure index ef501d3..24fae95 100755 --- a/configure +++ b/configure @@ -132,6 +132,7 @@ gen_LDFLAGS () { ## Lua objects gen_LUAOBJS () { + touch config.mk for obj in $(make -Cexternal/lua -s echo | grep -E '^BASE_O= ' | cut -d " " -f2-); do luaobjs="$luaobjs external/lua/$obj" done