Commit 16ed5374 authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm play wine: add message about 32 bit packages

parent 5af65925
...@@ -88,7 +88,9 @@ if [ "$arch" = "x86_64" ] ; then ...@@ -88,7 +88,9 @@ if [ "$arch" = "x86_64" ] ; then
PKGNAMES="$PKGNAMES $PKGCOMMON" PKGNAMES="$PKGNAMES $PKGCOMMON"
epm install $PKGNAMES || exit epm install $PKGNAMES || exit
# for non wow64 packages install 32 bit part # for non wow64 packages install 32 bit part
if ! epm ql $MAIN | grep -q "/i386-windows/" ; then if epm ql $MAIN | grep -q "/i386-windows/" ; then
echo "Run epm play wine --only-i586 if you need support for 32 bit only wine prefixes."
else
epm install $PKGNAMES32 || exit epm install $PKGNAMES32 || exit
# Доставляем пропущенные модули (подпакеты) для установленных 64-битных # Доставляем пропущенные модули (подпакеты) для установленных 64-битных
epm prescription i586-fix epm prescription i586-fix
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment