From 13636c13d85837229eeba5a87fe398a219a6fe96 Mon Sep 17 00:00:00 2001 From: Ryan Liptak Date: Fri, 29 Mar 2019 03:33:20 -0700 Subject: [PATCH] Fix CMake errors in holy-build-box from using cmake at root --- packaging/holy-build.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packaging/holy-build.sh b/packaging/holy-build.sh index 3be5ca16..bc37d435 100755 --- a/packaging/holy-build.sh +++ b/packaging/holy-build.sh @@ -13,7 +13,10 @@ source /hbb_exe/activate set -x # Extract and enter source -tar xzf /io/luvi-src.tar.gz +# Use /luvi dir to avoid CMake assertion failure in / +mkdir -p luvi +tar xzf /io/luvi-src.tar.gz --directory luvi +cd luvi make ${BUILD_TYPE} make -j${NPROCS} ldd build/luvi