Skip to content

Commit 48f4ec0

Browse files
committed
fix(wine): ensure 32 bit arch
1 parent c156e9d commit 48f4ec0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/wine/find-deps.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ STATUS=/tmp/dpkg.status.empty
2323

2424
case "${BUILD}" in
2525
stable|devel|staging)
26-
apt-get -s install -y -o Dir::State::status="$STATUS" -o APT::Install-Recommends=1 "winehq-${BUILD}" \
26+
apt-get -s install -y -o Dir::State::status="$STATUS" -o APT::Install-Recommends=1 -o APT::Architectures=amd64;i386 "winehq-${BUILD}" \
2727
| _print_inst
2828
;;
2929

@@ -44,7 +44,7 @@ case "${BUILD}" in
4444
exit 2
4545
fi
4646

47-
apt-get -s install -y -o Dir::State::status="$STATUS" -o APT::Install-Recommends=1 \
47+
apt-get -s install -y -o Dir::State::status="$STATUS" -o APT::Install-Recommends=1 -o APT::Architectures=amd64;i386 \
4848
"wine-${WINE_BRANCH}-i386=${WINE_BUILD}" \
4949
"wine-${WINE_BRANCH}-amd64=${WINE_BUILD}" \
5050
"wine-${WINE_BRANCH}=${WINE_BUILD}" \

0 commit comments

Comments
 (0)