summaryrefslogtreecommitdiff
path: root/compilerplugins/clang/finalclasses.py
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-04-10 15:41:12 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-04-10 15:54:24 +0200
commit64a5d65f4c6226d8e98d2f33bf86f748d4ac9280 (patch)
treebb772d7e408fa984a7f4f628ae0efc3c68a1980a /compilerplugins/clang/finalclasses.py
parent97932839851ff4084f32c82442176c2114763b74 (diff)
put the loplugin output files in the workdir
so that the next time I accidentally leave one turned on, and commit it, the buildbots will clean up naturally the next time they run 'make clean' Change-Id: Ia09dea9c272c322c7e2773c5458cb54aceb50dd1
Diffstat (limited to 'compilerplugins/clang/finalclasses.py')
-rwxr-xr-xcompilerplugins/clang/finalclasses.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/finalclasses.py b/compilerplugins/clang/finalclasses.py
index 304074688363..d2d4f695b8a1 100755
--- a/compilerplugins/clang/finalclasses.py
+++ b/compilerplugins/clang/finalclasses.py
@@ -7,7 +7,7 @@ definitionSet = set()
inheritFromSet = set()
definitionToFileDict = {}
-with open("loplugin.finalclasses.log") as txt:
+with open("workdir/loplugin.finalclasses.log") as txt:
for line in txt:
tokens = line.strip().split("\t")