From 21a194c479af50f9b20a9604afeca51be6b37513 Mon Sep 17 00:00:00 2001 From: Alvin Schiller <103769832+AlvinSchiller@users.noreply.github.com> Date: Sat, 23 Mar 2024 19:03:08 +0100 Subject: [PATCH] Update setup_jukebox_core.sh --- installation/routines/setup_jukebox_core.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/installation/routines/setup_jukebox_core.sh b/installation/routines/setup_jukebox_core.sh index cb85198be..1722da6ff 100644 --- a/installation/routines/setup_jukebox_core.sh +++ b/installation/routines/setup_jukebox_core.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash # Constants -JUKEBOX_ZMQ_TMP_DIR="${HOME_PATH}/libzmq" -JUKEBOX_ZMQ_PREFIX="/usr/local" +JUKEBOX_ZMQ_TMP_DIR="${INSTALLATION_PATH}/.tmp/libzmq" +JUKEBOX_ZMQ_PREFIX="${INSTALLATION_PATH}/.lib" JUKEBOX_ZMQ_VERSION="4.3.5" JUKEBOX_PULSE_CONFIG="${HOME_PATH}"/.config/pulse/default.pa @@ -79,6 +79,7 @@ _jukebox_core_build_and_install_pyzmq() { if ! pip list | grep -F pyzmq >> /dev/null; then mkdir -p "${JUKEBOX_ZMQ_TMP_DIR}" || exit_on_error + mkdir -p "${JUKEBOX_ZMQ_PREFIX}" || exit_on_error if [ "$BUILD_LIBZMQ_WITH_DRAFTS_ON_DEVICE" = true ] ; then _jukebox_core_build_libzmq_with_drafts else