summaryrefslogtreecommitdiff
path: root/support/make4ht/domfilters/make4ht-inlinecss.lua
diff options
context:
space:
mode:
Diffstat (limited to 'support/make4ht/domfilters/make4ht-inlinecss.lua')
-rw-r--r--support/make4ht/domfilters/make4ht-inlinecss.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/make4ht/domfilters/make4ht-inlinecss.lua b/support/make4ht/domfilters/make4ht-inlinecss.lua
index b086a2fc42..3240df275c 100644
--- a/support/make4ht/domfilters/make4ht-inlinecss.lua
+++ b/support/make4ht/domfilters/make4ht-inlinecss.lua
@@ -58,7 +58,7 @@ return function(dom, par)
if not processed then
-- process the CSS file before everything else, but only once
processed = true
- local css_file = par.input .. ".css"
+ local css_file = mkutils.file_in_builddir(par.input .. ".css", par)
local status, msg = parse_css(css_file)
if not status then log:warning(msg) end
end