From 3bd207f5b7c845e548a92aa2f26498a3542d4a12 Mon Sep 17 00:00:00 2001 From: Wren Turkal <wt@penguintechs.org> Date: Wed, 22 Jul 2020 23:18:19 -0700 Subject: [PATCH] Fix pciids recipe. The wrong variable was being used in the build script. Signed-off-by: Wren Turkal <wt@penguintechs.org> --- recipes/pciids/recipe.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/pciids/recipe.toml b/recipes/pciids/recipe.toml index dfacfc509..3404148bc 100644 --- a/recipes/pciids/recipe.toml +++ b/recipes/pciids/recipe.toml @@ -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/" """ -- GitLab