We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa351a6 commit 5959e2fCopy full SHA for 5959e2f
packaging/packager
@@ -45,6 +45,7 @@ done
45
set -- "${POSITIONAL[@]}" # restore positional parameters
46
47
PKG_BIN_PATH=$1
48
+architecture=$(arch)
49
50
if [ ! -f "$PKG_BIN_PATH" ]; then
51
echo "$PKG_BIN_PATH" - No such file.;
@@ -73,8 +74,8 @@ function package_libc_via_dpkg() {
73
74
75
function package_libc_via_rpm() {
76
if type rpm > /dev/null 2>&1; then
- 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'
+ if [[ $(rpm --query --list glibc.$architecture | wc -l) -gt 1 ]]; then
78
+ rpm --query --list glibc.$architecture | sed -E '/\.so$|\.so\.[0-9]+$/!d'
79
fi
80
81
}
0 commit comments