diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-04-10 15:41:12 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-04-10 15:54:24 +0200 |
commit | 64a5d65f4c6226d8e98d2f33bf86f748d4ac9280 (patch) | |
tree | bb772d7e408fa984a7f4f628ae0efc3c68a1980a /compilerplugins/clang/mergeclasses.cxx | |
parent | 97932839851ff4084f32c82442176c2114763b74 (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/mergeclasses.cxx')
-rw-r--r-- | compilerplugins/clang/mergeclasses.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/mergeclasses.cxx b/compilerplugins/clang/mergeclasses.cxx index c8d3e8107e97..ca6cdeac74be 100644 --- a/compilerplugins/clang/mergeclasses.cxx +++ b/compilerplugins/clang/mergeclasses.cxx @@ -67,7 +67,7 @@ public: for (const std::pair<std::string,std::string> & s : definitionMap) output += "definition:\t" + s.first + "\t" + s.second + "\n"; std::ofstream myfile; - myfile.open( SRCDIR "/loplugin.mergeclasses.log", std::ios::app | std::ios::out); + myfile.open( WORKDIR "/loplugin.mergeclasses.log", std::ios::app | std::ios::out); myfile << output; myfile.close(); } |