meta-facebook: fb-powerctrl: remove excess trailing slash
Clean up the bitbake warning.
WARNING: Recipe fb-powerctrl sets S variable with trailing slash
'.../tmp/work/arm1176jzs-openbmc-linux-gnueabi/fb-powerctrl/1.0-r0/',
remove it
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: Iad85528bfc42f042985f02035bbe8cc41fa020e8
diff --git a/meta-facebook/recipes-fb/fb-powerctrl/fb-powerctrl.bb b/meta-facebook/recipes-fb/fb-powerctrl/fb-powerctrl.bb
index a46c44b..1f476ad 100644
--- a/meta-facebook/recipes-fb/fb-powerctrl/fb-powerctrl.bb
+++ b/meta-facebook/recipes-fb/fb-powerctrl/fb-powerctrl.bb
@@ -4,7 +4,7 @@
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=a8328fd2a610bf4527feedcaa3ae3d14"
-S = "${WORKDIR}/"
+S = "${WORKDIR}"
SRC_URI = "file://setup_gpio.sh \
file://power-util \
@@ -21,6 +21,6 @@
do_install() {
install -d ${D}/usr/sbin
- install -m 0755 ${S}setup_gpio.sh ${D}/${sbindir}/
- install -m 0755 ${S}power-util ${D}/${sbindir}/
+ install -m 0755 ${S}/setup_gpio.sh ${D}/${sbindir}/
+ install -m 0755 ${S}/power-util ${D}/${sbindir}/
}