Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
olofk committed Dec 19, 2024
1 parent 78f3e90 commit 886afe3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion edalize/tools/vcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,12 @@ def setup(self, edam):
i += 1
if has_vlog:
depfiles += include_files
libdepfiles = [x+"/AN.DB/make.vlogan" for x in libdeps.get(lib, [])]
libdepfiles = []
for l in libdeps.get(lib, []):
if files:
libdepfiles.append(l+"/AN.DB/make.vlogan")
else:
print("No files. Skipping")
self.commands.add(
[cmd] + full64 + ["-f", f_file, "-work", workdir] + fnames,
[workdir + "/" + target_file],
Expand Down

0 comments on commit 886afe3

Please sign in to comment.