Skip to content

Commit 4fbb6c0

Browse files
committed
fix(core): Correct module load paths when building in developer mode
1 parent ecc913d commit 4fbb6c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/pathsetup.lua.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ local function extendPaths (path, silesourcedir)
6767
prependPath(path .. "/sile")
6868
end
6969
-- These paths are *only* used in developer mode for build testing
70-
if "@DEVELOPER_FALSE@" ~= "" then -- see ./configure --(en|dis)able-developer
70+
if "@DEVELOPER_MODE_TRUE@" == "" then -- see ./configure --(en|dis)able-developer-mode
7171
prependCPath(path .. "/libtexpdf/.libs")
7272
prependCPath(path .. "/justenough/.libs")
7373
end

0 commit comments

Comments
 (0)