Skip to content

Commit

Permalink
fix(core): Correct module load paths when building in developer mode
Browse files Browse the repository at this point in the history
  • Loading branch information
alerque committed Sep 30, 2024
1 parent ecc913d commit 4fbb6c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/pathsetup.lua.in
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4fbb6c0

Please sign in to comment.