2019-10-05 13:01:37 -06:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
|
|
|
# Build autoconf 2.13 for Firefox's sole use.
|
|
|
|
# See: https://bugzilla.mozilla.org/show_bug.cgi?id=104642
|
|
|
|
(
|
|
|
|
cd autoconf2.13
|
2019-10-05 18:04:01 -06:00
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix="$PWD/../autoconf" \
|
|
|
|
--program-suffix=-2.13
|
|
|
|
|
2019-10-05 13:01:37 -06:00
|
|
|
make
|
|
|
|
make install
|
|
|
|
)
|
2019-10-06 01:34:51 -06:00
|
|
|
export PATH=$PWD/autoconf/bin:$PATH
|
2019-10-05 13:01:37 -06:00
|
|
|
|
|
|
|
unset MOZ_TELEMETRY_REPORTING
|
2019-10-05 16:39:50 -06:00
|
|
|
export LDFLAGS="$LDFLAGS -Wl,-rpath=/usr/lib/firefox"
|
2019-10-05 13:01:37 -06:00
|
|
|
export MOZ_NOSPAM=1
|
|
|
|
|
|
|
|
cd firefox
|
|
|
|
|
|
|
|
for patch in *.patch; do
|
|
|
|
patch -p1 < "$patch"
|
|
|
|
done
|
|
|
|
|
2019-10-06 03:52:43 -06:00
|
|
|
# Fix OOM errors.
|
|
|
|
cores=$(nproc)
|
|
|
|
printf '%s\n' "mk_add_options MOZ_MAKE_FLAGS=\"-j$cores -l$cores\"" >> mozconfig
|
|
|
|
|
2019-10-06 01:34:51 -06:00
|
|
|
./mach build
|
2019-10-05 13:01:37 -06:00
|
|
|
DESTDIR="$1" ./mach install
|
|
|
|
|
|
|
|
rm -rf "$1/usr/include"
|
|
|
|
rm -rf "$1/usr/lib/firefox-devel"
|
|
|
|
rm -rf "$1/usr/share/idl"
|
|
|
|
rm -rf "$1/usr/lib/firefox/gtk2"
|
2019-10-05 18:04:01 -06:00
|
|
|
rm -f "$1/usr/lib/firefox/browser/features/fxmonitor@mozilla.org.xpi"
|
|
|
|
rm -f "$1/usr/lib/firefox/browser/features/screenshots@mozilla.org.xpi"
|
|
|
|
rm -f "$1/usr/lib/firefox/browser/features/webcompat-reporter@mozilla.org.xpi"
|
|
|
|
rm -f "$1/usr/lib/firefox/browser/features/webcompat@mozilla.org.xpi"
|
2019-10-05 13:01:37 -06:00
|
|
|
|
2019-10-05 16:39:50 -06:00
|
|
|
install -D vendor.js "$1/usr/lib/firefox/browser/defaults/preferences/vendor.js"
|
2019-10-06 01:34:51 -06:00
|
|
|
install -D policies.json "$1/usr/lib/firefox/distribution/policies.json"
|