From 4fbb6c01df87c363373a636e0a73e9639f53d130 Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Mon, 30 Sep 2024 14:35:31 +0300 Subject: [PATCH] fix(core): Correct module load paths when building in developer mode --- core/pathsetup.lua.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/pathsetup.lua.in b/core/pathsetup.lua.in index 30d69e41f..9dff27a01 100644 --- a/core/pathsetup.lua.in +++ b/core/pathsetup.lua.in @@ -67,7 +67,7 @@ local function extendPaths (path, silesourcedir) prependPath(path .. "/sile") end -- These paths are *only* used in developer mode for build testing - if "@DEVELOPER_FALSE@" ~= "" then -- see ./configure --(en|dis)able-developer + if "@DEVELOPER_MODE_TRUE@" == "" then -- see ./configure --(en|dis)able-developer-mode prependCPath(path .. "/libtexpdf/.libs") prependCPath(path .. "/justenough/.libs") end