Skip to content

Commit 940f518

Browse files
committed
Merge branch 'tickets/DM-35792-hotfix'
2 parents 5b9212a + bd9a64a commit 940f518

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

python/lsst/sconsUtils/builders.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -339,9 +339,8 @@ def __call__(self, env, config):
339339
action="doxygen %s" % pipes.quote(outConfigNode.abspath))
340340
for path in self.outputPaths:
341341
env.Clean(doc, path)
342-
if os.path.exists(config):
343-
env.Depends(doc, config)
344-
self.results.extend(config)
342+
env.Depends(doc, config)
343+
self.results.extend(config)
345344
self.results.extend(doc)
346345
return self.results
347346

0 commit comments

Comments
 (0)