diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-14 19:22:06 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-14 19:22:06 +0000 |
commit | 5ecaa3a7f798e0da8bd46ed1757c21c0d6334505 (patch) | |
tree | 6947e7c36a88bbb00e0a950ee6b33e2aaf6254ff /ci/env-linux.inc.sh | |
parent | Adding upstream version 0.17.0. (diff) | |
download | rnp-5ecaa3a7f798e0da8bd46ed1757c21c0d6334505.tar.xz rnp-5ecaa3a7f798e0da8bd46ed1757c21c0d6334505.zip |
Adding upstream version 0.17.1.upstream/0.17.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ci/env-linux.inc.sh')
-rw-r--r-- | ci/env-linux.inc.sh | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/ci/env-linux.inc.sh b/ci/env-linux.inc.sh deleted file mode 100644 index 9267972..0000000 --- a/ci/env-linux.inc.sh +++ /dev/null @@ -1,46 +0,0 @@ -#!/usr/bin/env bash -# shellcheck disable=SC1091 - -: "${CORES:=$(grep -c '^$' /proc/cpuinfo)}" -export CORES -export MAKE=make - -DIST="$(get_linux_dist)" -DIST_VERSION_ID="$(sh -c '. /etc/os-release && echo $VERSION_ID')" -DIST_VERSION="${DIST}-${DIST_VERSION_ID}" - -export DIST -export DIST_VERSION -export DIST_VERSION_ID - -case "${DIST}" in - centos|fedora) - if command -v dnf >/dev/null; then - export YUM=dnf - else - export YUM=yum - fi - export SUDO=sudo - ;; - ubuntu) - export SUDO=sudo - ;; -esac - -# XXX: debug function for locale -case "${DIST}" in - fedora|centos) - debuglocale() { - locale -a - localedef --list-archive - if ! command -v diff >/dev/null; then - "${YUM}" -y -q install diffutils - fi - bash -c 'diff -u <(localedef --list-archive | sort) <(locale -a | sort) || :' - localedef -c -i "${LC_ALL%.*}" -f UTF-8 "${LC_ALL}" - # Error: character map file `UTF-8' not found: No such file or directory - # Error: cannot read character map directory `/usr/share/i18n/charmaps': No such file or directory - locale -a | grep "${LC_ALL}" || : - } - ;; -esac |