clean up libraries in meson.build files
Signed-off-by: Zane Shelley <zshelle@us.ibm.com>
Change-Id: I6ca90bb9d02243413fc5e0b85001666e836a435c
diff --git a/analyzer/meson.build b/analyzer/meson.build
index 371e0b8..1ef013c 100644
--- a/analyzer/meson.build
+++ b/analyzer/meson.build
@@ -1,4 +1,4 @@
-# gather analyzer sources to be used here and elsewhere if needed
+# Source files.
analyzer_src = files(
'analyzer_main.cpp',
'create_pel.cpp',
@@ -13,10 +13,13 @@
sdbusplus_dep,
]
-# Create hardware error analyzer library
-analyzer = static_library('analyzer',
- analyzer_src,
- include_directories : incdir,
- dependencies : analyzer_deps,
- cpp_args : test_arg,
- install : false)
+# Create static library.
+analyzer_lib = static_library(
+ 'analyzer_lib',
+ analyzer_src,
+ include_directories : incdir,
+ dependencies : analyzer_deps,
+ cpp_args : test_arg,
+ install : false,
+)
+