From 0c7905721d7e3dd07641f98c9c7eb558ec9e874c Mon Sep 17 00:00:00 2001 From: Michael Zanetti Date: Sun, 14 Dec 2014 01:07:03 +0100 Subject: [PATCH] add generated info header to make licensecheck happy --- plugins/generateplugininfo.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/plugins/generateplugininfo.py b/plugins/generateplugininfo.py index 9e96b0fa..2cf6befe 100755 --- a/plugins/generateplugininfo.py +++ b/plugins/generateplugininfo.py @@ -74,6 +74,13 @@ def extractEventTypes(deviceClassMap): # write header +out("/* This file is generated by the guh build system. Any changes to this fille") +out(" * be lost.") +out("") +out(" * If you want to change this file, edit the plugin's json file and add") +out(" * idName tags where appropriate.") +out(" */") + out("#ifndef PLUGININFO_H") out("#define PLUGININFO_H") out("#include \"typeutils.h\"");