phosphor-inventory-manager-assettag-native: Missing ${D} install path
Leaving off a ${D} in a do_install function causes the package
to install directly into the 'sysroot' and bypass the sstate cache
for the package's do_install task. This can cause re-builds of the
same package to fail.
Change-Id: I4276c58b364f1359679de15f533dc3f47da676e9
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/meta-phosphor/common/recipes-phosphor/inventory/phosphor-inventory-manager-assettag-native.bb b/meta-phosphor/common/recipes-phosphor/inventory/phosphor-inventory-manager-assettag-native.bb
index f92f4c8..fe9e6ed 100644
--- a/meta-phosphor/common/recipes-phosphor/inventory/phosphor-inventory-manager-assettag-native.bb
+++ b/meta-phosphor/common/recipes-phosphor/inventory/phosphor-inventory-manager-assettag-native.bb
@@ -15,6 +15,6 @@
# This recipe would provide the yaml for inventory manager to
# create AssetTag property at startup
- install -d ${base_datadir}/events.d/
- install assettag.yaml ${base_datadir}/events.d/assettag.yaml
+ install -d ${D}${base_datadir}/events.d/
+ install assettag.yaml ${D}${base_datadir}/events.d/assettag.yaml
}