Skip to content

Commit

Permalink
manifest: use maindir instead of "."
Browse files Browse the repository at this point in the history
  • Loading branch information
wspr committed Nov 15, 2017
1 parent 4d05538 commit 87afeea
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions l3build.lua
Expand Up @@ -2374,23 +2374,23 @@ function writemanifest()
name = "Source files",
files = {sourcefiles,typesetfiles},
exclude = {excludefiles},
dir = "./",
dir = maindir,
N = 0,
matches = {}
},
docu = {
name = "Text and Documentation files",
files = {textfiles,docfiles,demofiles,typesetdemofiles},
exclude = {excludefiles},
dir = "./",
dir = maindir,
N = 0,
matches = {}
},
bib = {
name = "Bibliography and index files",
files = {bibfiles,bstfiles,makeindexfiles},
exclude = {excludefiles},
dir = "./",
dir = maindir,
N = 0,
matches = {}
},
Expand Down Expand Up @@ -2489,7 +2489,7 @@ function build_manifest(file_list)
local excludelist = {}
for _,glob_list in ipairs(file_list.exclude) do
for _,this_glob in ipairs(glob_list) do
for _,this_file in ipairs(filelist(".",this_glob)) do
for _,this_file in ipairs(filelist(maindir,this_glob)) do
excludelist[this_file] = true
end
end
Expand Down

0 comments on commit 87afeea

Please sign in to comment.