Skip to content

Commit 5959e2f

Browse files
authoredMay 11, 2021
packager: fetch glibc corresponding to the architecture (#120)
1 parent aa351a6 commit 5959e2f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎packaging/packager

+3-2
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ done
4545
set -- "${POSITIONAL[@]}" # restore positional parameters
4646

4747
PKG_BIN_PATH=$1
48+
architecture=$(arch)
4849

4950
if [ ! -f "$PKG_BIN_PATH" ]; then
5051
echo "$PKG_BIN_PATH" - No such file.;
@@ -73,8 +74,8 @@ function package_libc_via_dpkg() {
7374

7475
function package_libc_via_rpm() {
7576
if type rpm > /dev/null 2>&1; then
76-
if [[ $(rpm --query --list glibc.x86_64 | wc -l) -gt 1 ]]; then
77-
rpm --query --list glibc.x86_64 | sed -E '/\.so$|\.so\.[0-9]+$/!d'
77+
if [[ $(rpm --query --list glibc.$architecture | wc -l) -gt 1 ]]; then
78+
rpm --query --list glibc.$architecture | sed -E '/\.so$|\.so\.[0-9]+$/!d'
7879
fi
7980
fi
8081
}

0 commit comments

Comments
 (0)
Please sign in to comment.