Skip to content

Commit

Permalink
Revert "Check config existence before making it a dependency."
Browse files Browse the repository at this point in the history
This reverts commit bbd554a.
  • Loading branch information
kfindeisen committed Aug 1, 2022
1 parent 5b9212a commit bd9a64a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions python/lsst/sconsUtils/builders.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,9 +339,8 @@ def __call__(self, env, config):
action="doxygen %s" % pipes.quote(outConfigNode.abspath))
for path in self.outputPaths:
env.Clean(doc, path)
if os.path.exists(config):
env.Depends(doc, config)
self.results.extend(config)
env.Depends(doc, config)
self.results.extend(config)
self.results.extend(doc)
return self.results

Expand Down

0 comments on commit bd9a64a

Please sign in to comment.