From dc15c6089c4dc0d647a698668c1272e6fa3679e5 Mon Sep 17 00:00:00 2001 From: Konstantin Aladyshev Date: Fri, 30 Apr 2021 15:13:13 +0300 Subject: meta-amd: Fix trailing slash warning in 'amd-fpga' recipe The current 'amd-fpga' recipe leads to constant warning messages in a bitbake build: """ WARNING: Recipe amd-fpga sets S variable with trailing slash, remove it. WARNING: Recipe amd-fpga sets B variable with trailing slash, remove it. """ Remove the trailing slash from the recipe to get rid of the messages. Signed-off-by: Konstantin Aladyshev Change-Id: Icb262d38f21cd0a08ddc1af01db7db01ddbc97e4 --- meta-amd/recipes-amd/amd-fpga/amd-fpga.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-amd') diff --git a/meta-amd/recipes-amd/amd-fpga/amd-fpga.bb b/meta-amd/recipes-amd/amd-fpga/amd-fpga.bb index 3fcaeaa91..32efddea2 100644 --- a/meta-amd/recipes-amd/amd-fpga/amd-fpga.bb +++ b/meta-amd/recipes-amd/amd-fpga/amd-fpga.bb @@ -10,7 +10,7 @@ SRCREV = "${AUTOREV}" SRC_URI = "file://fpgardu.sh" SRC_URI += "file://LICENSE" -S = "${WORKDIR}/" +S = "${WORKDIR}" do_install () { install -d ${D}${bindir} -- cgit v1.2.3