Location: fix generated meson files

When LocationCode interface was added, the checked in generated
meson files were missing one change.  Re-run generator and check
in.

Fixes 2bcb4b4f008ea70645ef6d755cc5967bd2bccfae.

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: Ic348773be3c21c7fe51784a7211bb8150e1a7ac9
diff --git a/gen/xyz/openbmc_project/Inventory/Decorator/meson.build b/gen/xyz/openbmc_project/Inventory/Decorator/meson.build
index 3ad9f4e..d18c725 100644
--- a/gen/xyz/openbmc_project/Inventory/Decorator/meson.build
+++ b/gen/xyz/openbmc_project/Inventory/Decorator/meson.build
@@ -89,6 +89,21 @@
     build_by_default: true,
 )
 
+subdir('LocationCode')
+generated_others += custom_target(
+    'xyz/openbmc_project/Inventory/Decorator/LocationCode__markdown'.underscorify(),
+    input: [ meson.source_root() / 'xyz/openbmc_project/Inventory/Decorator/LocationCode.interface.yaml',  ],
+    output: [ 'LocationCode.md' ],
+    command: [
+        sdbuspp_gen_meson_prog, '--command', 'markdown',
+        '--output', meson.current_build_dir(),
+        '--tool', sdbusplusplus_prog,
+        '--directory', meson.source_root(),
+        'xyz/openbmc_project/Inventory/Decorator/LocationCode',
+    ],
+    build_by_default: true,
+)
+
 subdir('ManufacturerExt')
 generated_others += custom_target(
     'xyz/openbmc_project/Inventory/Decorator/ManufacturerExt__markdown'.underscorify(),