# HG changeset patch # User Pascal Bellard # Date 1520973637 -3600 # Node ID 1ed1fa7d10cd27c5ef7769c0d5e2191d6976b469 # Parent c636d36601ac5bf4d082edc3dd0607b467fc3755 firefox, thunderbird: try to force i686 diff -r c636d36601ac -r 1ed1fa7d10cd firefox/receipt --- a/firefox/receipt Mon Mar 12 22:19:24 2018 +0100 +++ b/firefox/receipt Tue Mar 13 21:40:37 2018 +0100 @@ -44,7 +44,7 @@ fn1="$tarpath/firefox-${VERSION%esr}.en-US.linux-$ARCH.tar.bz2" fn2="$tarpath/firefox-${VERSION%esr}.en-US.linux-i686.tar.bz2" [ -e "$fn1" ] && tarball="$fn1" && echo "$ARCH tarball found" - [ -e "$fn2" ] && tarball="$fn2" && echo "$(uname -m) tarball found" + [ -e "$fn2" ] && tarball="$fn2" && echo "i686 tarball found" [ -z "$tarball" ] && echo "ERROR: tarball not found" && exit 1 # extract tarball mkdir -p $install/usr/lib/firefox-$VERSION && diff -r c636d36601ac -r 1ed1fa7d10cd firefox/stuff/mozconfig --- a/firefox/stuff/mozconfig Mon Mar 12 22:19:24 2018 +0100 +++ b/firefox/stuff/mozconfig Tue Mar 13 21:40:37 2018 +0100 @@ -101,3 +101,6 @@ ac_add_options --disable-gconf #ac_add_options --enable-system-cairo # crash ac_add_options --disable-logging + +ac_add_options --host=i686-pc-linux-gnu +ac_add_options --target=i686-pc-linux-gnu diff -r c636d36601ac -r 1ed1fa7d10cd thunderbird/receipt --- a/thunderbird/receipt Mon Mar 12 22:19:24 2018 +0100 +++ b/thunderbird/receipt Tue Mar 13 21:40:37 2018 +0100 @@ -46,7 +46,7 @@ fn1="$tarpath/thunderbird-${VERSION%esr}.en-US.linux-$ARCH.tar.bz2" fn2="$tarpath/thunderbird-${VERSION%esr}.en-US.linux-i686.tar.bz2" [ -e "$fn1" ] && tarball="$fn1" && echo "$ARCH tarball found" - [ -e "$fn2" ] && tarball="$fn2" && echo "$(uname -m) tarball found" + [ -e "$fn2" ] && tarball="$fn2" && echo "i686 tarball found" [ -z "$tarball" ] && echo "ERROR: tarball not found" && exit 1 # extract tarball mkdir -p $install/usr/lib/thunderbird-$VERSION && diff -r c636d36601ac -r 1ed1fa7d10cd thunderbird/stuff/mozconfig --- a/thunderbird/stuff/mozconfig Mon Mar 12 22:19:24 2018 +0100 +++ b/thunderbird/stuff/mozconfig Tue Mar 13 21:40:37 2018 +0100 @@ -89,3 +89,6 @@ ac_add_options --disable-gconf #ac_add_options --enable-system-cairo # crash ac_add_options --disable-logging + +ac_add_options --host=i686-pc-linux-gnu +ac_add_options --target=i686-pc-linux-gnu