Skip to content

Commit

Permalink
Fix ROOT build paths
Browse files Browse the repository at this point in the history
  • Loading branch information
nothingface0 committed Jun 7, 2024
1 parent 6401a8b commit a3d84f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deploy_dqmgui.sh
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ compile_root() {
fi
mkdir -p $ROOT_TMP_BUILD_DIR
cd $ROOT_TMP_BUILD_DIR
cmake -DCMAKE_INSTALL_PREFIX=$ROOT_INSTALLATION_DIR $ROOT_TMP_DIR -DPYTHON_EXECUTABLE="$(which python${PYTHON_VERSION})" -Dtesting=OFF -Dbuiltin_gtest=OFF -Dclad=OFF
cmake -DCMAKE_INSTALL_PREFIX=$ROOT_INSTALLATION_DIR $ROOT_TMP_DIR/root -DPYTHON_EXECUTABLE="$(which python${PYTHON_VERSION})" -Dtesting=OFF -Dbuiltin_gtest=OFF -Dclad=OFF
cmake --build . --target install -j $(nproc)
cd $INSTALLATION_DIR
rm -rf $ROOT_TMP_DIR $ROOT_TMP_BUILD_DIR
Expand Down Expand Up @@ -602,7 +602,7 @@ done

## Internal temporary paths
ROOT_TMP_DIR="${TMP_BASE_PATH}/root/$(_sanitize_string $ROOT_GIT_TAG)"
ROOT_TMP_BUILD_DIR="${TMP_BASE_PATH}/$(_sanitize_string $ROOT_GIT_TAG)/root_build"
ROOT_TMP_BUILD_DIR="${TMP_BASE_PATH}/root_build/$(_sanitize_string $ROOT_GIT_TAG)"
ROTOGLUP_TMP_DIR="${TMP_BASE_PATH}/rotoglup"
CLASSLIB_TMP_DIR="${TMP_BASE_PATH}/classlib-3.1.3"
DMWM_TMP_DIR="${TMP_BASE_PATH}/dmwm"
Expand Down

0 comments on commit a3d84f8

Please sign in to comment.