Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing env variables when using k4_local_repo #687

Merged
merged 1 commit into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion scripts/cvmfs/setup-nightlies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,11 @@ k4_local_repo() {
export PKG_CONFIG_PATH=$PWD/$install/lib/pkgconfig:$PKG_CONFIG_PATH
export ROOT_INCLUDE_PATH=$PWD/$install/include:$ROOT_INCLUDE_PATH
if [ "$current_repo" = "k4geo" ]; then
export LCGEO=$PWD
export K4GEO=$PWD
echo "Added K4GEO=$PWD"
export lcgeo_DIR=$PWD
export k4geo_DIR=$PWD
echo "Added LCGEO, K4GEO, lcgeo_DIR and k4geo_DIR to the environment"
fi
echo "Added $PWD/$install to the environment and removed any paths containing /${current_repo}/"
echo "Some variables may have to be updated manually to point to the local installation"
Expand Down
5 changes: 4 additions & 1 deletion scripts/cvmfs/setup-releases.sh
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,11 @@ k4_local_repo() {
export PKG_CONFIG_PATH=$PWD/$install/lib/pkgconfig:$PKG_CONFIG_PATH
export ROOT_INCLUDE_PATH=$PWD/$install/include:$ROOT_INCLUDE_PATH
if [ "$current_repo" = "k4geo" ]; then
export LCGEO=$PWD
export K4GEO=$PWD
echo "Added K4GEO=$PWD"
export lcgeo_DIR=$PWD
export k4geo_DIR=$PWD
echo "Added LCGEO, K4GEO, lcgeo_DIR and k4geo_DIR to the environment"
fi
echo "Added $PWD/$install to the environment and removed any paths containing /${current_repo}/"
echo "Some variables may have to be updated manually to point to the local installation"
Expand Down
Loading