We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4aa6639 commit b3cc261Copy full SHA for b3cc261
packaging/packager
@@ -78,8 +78,9 @@ function package_libc_pacman() {
78
79
function package_libc_dpkg() {
80
if type dpkg-query > /dev/null 2>&1; then
81
- if [[ $(dpkg-query --listfiles libc6 | wc -l) -gt 0 ]]; then
82
- dpkg-query --listfiles libc6 | pluck_so_files
+ architecture=$(dpkg --print-architecture)
+ if [[ $(dpkg-query --listfiles libc6:$architecture | wc -l) -gt 0 ]]; then
83
+ dpkg-query --listfiles libc6:$architecture | pluck_so_files
84
fi
85
86
}
0 commit comments