From 64a5d65f4c6226d8e98d2f33bf86f748d4ac9280 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 10 Apr 2018 15:41:12 +0200 Subject: 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 --- compilerplugins/clang/virtualdown.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compilerplugins/clang/virtualdown.cxx') diff --git a/compilerplugins/clang/virtualdown.cxx b/compilerplugins/clang/virtualdown.cxx index b33dc6cf5603..8c7ef41494d9 100644 --- a/compilerplugins/clang/virtualdown.cxx +++ b/compilerplugins/clang/virtualdown.cxx @@ -62,7 +62,7 @@ public: for (const std::string& s : callSet) output += "call:\t" + s + "\n"; std::ofstream myfile; - myfile.open(SRCDIR "/loplugin.virtualdown.log", std::ios::app | std::ios::out); + myfile.open(WORKDIR "/loplugin.virtualdown.log", std::ios::app | std::ios::out); myfile << output; myfile.close(); } -- cgit