Coin: add SourceEnvVar to source env vars written by SetEnvVars

This mainly moves scattered similar code that was already
sourcing profile files to own script, so it can be re-used
elsewhere.

Change-Id: I11677226370fc52f50292d70c62cae5bd7c58d19
Reviewed-by: Dimitrios Apostolou <jimis@qt.io>
This commit is contained in:
Assam Boudjelthia
2026-04-11 03:00:45 +03:00
parent 1e45674573
commit 7b4a4cf35b
3 changed files with 19 additions and 25 deletions

View File

@@ -0,0 +1,15 @@
#!/usr/bin/env bash
# Copyright (C) 2026 The Qt Company Ltd.
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
# Sources the shell profile files where SetEnvVar.sh writes environment variables.
if uname -a |grep -q "Ubuntu"; then
if lsb_release -a |grep "Ubuntu 22.04"; then
source ~/.bash_profile
else
source ~/.profile
fi
else
source ~/.bashrc
fi

View File

@@ -9,20 +9,8 @@ set -ex
source "${BASH_SOURCE%/*}/DownloadURL.sh"
# shellcheck source=./SetEnvVar.sh
source "${BASH_SOURCE%/*}/SetEnvVar.sh"
# Extract cmake path from the environment
if uname -a |grep -q "Ubuntu"; then
if lsb_release -a |grep -q "Ubuntu 22.04"; then
# shellcheck source=/dev/null
source ~/.bash_profile
else
# shellcheck source=/dev/null
source ~/.profile
fi
else
# shellcheck source=/dev/null
source ~/.bashrc
fi
# shellcheck source=./SourceEnvVars.sh
source "${BASH_SOURCE%/*}/SourceEnvVars.sh"
version="1.50.1"
sha1="be1b0c3dbfbc9714824921f50dffb7cf044da5ab"

View File

@@ -6,17 +6,8 @@
source "${BASH_SOURCE%/*}/DownloadURL.sh"
# shellcheck source=./SetEnvVar.sh
source "${BASH_SOURCE%/*}/SetEnvVar.sh"
# Extract cmake path from the environment
if uname -a |grep -q "Ubuntu"; then
if lsb_release -a |grep "Ubuntu 22.04"; then
source ~/.bash_profile
else
source ~/.profile
fi
else
source ~/.bashrc
fi
# shellcheck source=./SourceEnvVars.sh
source "${BASH_SOURCE%/*}/SourceEnvVars.sh"
# This script will install Google's Protocal Buffers