Skip to content

Commit 3f090d9

Browse files
committed
create-deb-deploy: install prefix fix
1 parent 6be99cb commit 3f090d9

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

scripts/create-deb-deploy.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ run_pipeline() {
7979
local build_user_args=(${BUILD_ARGS})
8080

8181
cmake -S "${ROOT_DIR}" -B "${build_dir}" -DCMAKE_BUILD_TYPE=Release \
82+
-DCMAKE_INSTALL_PREFIX=/ \
8283
"${CMAKE_DEPLOY_ARGS[@]}" \
8384
"${cmake_user_args[@]}"
8485

@@ -89,7 +90,7 @@ run_pipeline() {
8990
fi
9091

9192
# Expected setcap warnings during staged install are tolerated.
92-
DESTDIR="${stage_dir}" cmake --install "${build_dir}" || true
93+
DESTDIR="${stage_dir}" cmake --install "${build_dir}"
9394

9495
# Ensure robot description assets are packaged when available.
9596
if [[ -d "${ROOT_DIR}/robots/aliengo/aliengo-description" ]]; then

0 commit comments

Comments
 (0)