Skip to content

Commit bd9a64a

Browse files
committed
Revert "Check config existence before making it a dependency."
This reverts commit bbd554a.
1 parent 5b9212a commit bd9a64a

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)