Fix pciids recipe.

The wrong variable was being used in the build script.

Signed-off-by: Wren Turkal <wt@penguintechs.org>
This commit is contained in:
Wren Turkal 2020-07-22 23:18:19 -07:00
parent 7246f3e155
commit 3bd207f5b7

View File

@ -5,5 +5,5 @@ git = "https://github.com/pciutils/pciids.git"
template = "custom"
script = """
install -d "${COOKBOOK_STAGE}/share/misc/"
install "${COOKBOOK_BUILD}"/pci.ids "${COOKBOOK_STAGE}/share/misc/"
install "${COOKBOOK_SOURCE}"/pci.ids "${COOKBOOK_STAGE}/share/misc/"
"""