Don't install elog-gen.py and mako templates

These were actually getting installed into the BMC flash image, which
isn't desirable.  Bitbake runs these straight from the source tree so
removing this doesn't affect builds.

This does mean they wouldn't be installed into usr/share in the SDK, but
it's not like that was in $PATH anyway.

Signed-off-by: Matt Spinler <spinler@us.ibm.com>
Change-Id: I65fff38bcdf82e8b812177d65a6918fc9abbd5fd
diff --git a/tools/meson.build b/tools/meson.build
index 3b06af0..bb08ffb 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -1,9 +1,4 @@
 tool_dir = meson.current_source_dir()
 
 elog_gen = files('elog-gen.py')
-install_data(
-    elog_gen,
-    install_dir: get_option('datadir') / 'phosphor-logging' / 'elog' / 'tools',
-)
-
 subdir('phosphor-logging/templates')
diff --git a/tools/phosphor-logging/templates/meson.build b/tools/phosphor-logging/templates/meson.build
index ce48798..e4dd26f 100644
--- a/tools/phosphor-logging/templates/meson.build
+++ b/tools/phosphor-logging/templates/meson.build
@@ -1,11 +1 @@
 template_elog_gen = files('elog-gen-template.mako.hpp')
-template_elog_lookup = files('elog-lookup-template.mako.cpp')
-template_elog_process_metadata = files('elog-process-metadata.mako.cpp')
-
-install_data(
-    template_elog_gen,
-    template_elog_lookup,
-    template_elog_process_metadata,
-    install_dir : get_option('datadir') / 'phosphor-logging' / 'elog' /
-        'tools' / 'phosphor-logging' / 'templates',
-)