From 9957c8ab89e03a090d95954988ff30ce6084271c Mon Sep 17 00:00:00 2001 From: Dave Hylands Date: Mon, 9 Apr 2018 13:19:27 -0700 Subject: [PATCH] Fix location of openzwave rpi-image-builder moved the install location of openzwave from /usr/local to /usr. This catches up to that change --- image/build-gateway.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/image/build-gateway.sh b/image/build-gateway.sh index a22cd2006..3549e9f47 100755 --- a/image/build-gateway.sh +++ b/image/build-gateway.sh @@ -88,6 +88,6 @@ tar czf ${GATEWAY_TARBALL} ${GATEWAY} # NOTE: We need to use cd (instead of -C) so that the libopenzwave* wildcard # will be expanded properly. OZW_TGZ=$(pwd)/${OPENZWAVE_TARBALL} -(cd /; tar czf ${OZW_TGZ} usr/local/include/openzwave usr/local/lib/libopenzwave* usr/local/etc/openzwave) +(cd /; tar czf ${OZW_TGZ} usr/include/openzwave usr/lib/libopenzwave* usr/etc/openzwave) echo "Done"