mirror of
https://github.com/roytam1/UXP.git
synced 2026-05-26 13:58:49 +00:00
3e6cbc6af3
Based on Mozilla bugs 1270140, 1504656, 1483545, and 1504334. Took note of Mozilla bug 1379222 which changed GetPrototypeFromCallableConstructor to GetPrototypeFromBuiltinConstructor. There are many other changes I did myself since the initial implementation by Mozilla wouldn't work with this codebase.
30 lines
883 B
Bash
Executable File
30 lines
883 B
Bash
Executable File
#!/bin/sh
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
set -e
|
|
|
|
# Ensure that $Date$ in the checked-out git files expands timezone-agnostically,
|
|
# so that this script's behavior is consistent when run from any time zone.
|
|
export TZ=UTC
|
|
|
|
# Also ensure GIT-INFO is consistently English.
|
|
export LANG=en_US.UTF-8
|
|
export LANGUAGE=en_US
|
|
export LC_ALL=en_US.UTF-8
|
|
|
|
icu_dir=`dirname $0`/icu
|
|
|
|
for patch in \
|
|
bug-915735 \
|
|
suppress-warnings.diff \
|
|
bug-1172609-timezone-recreateDefault.diff \
|
|
bug-1198952-workaround-make-3.82-bug.diff \
|
|
bug-1504656-relativetimeformat-plural-other-fallback.diff \
|
|
; do
|
|
echo "Applying local patch $patch"
|
|
patch -d ${icu_dir}/../../ -p1 --no-backup-if-mismatch < ${icu_dir}/../icu-patches/$patch
|
|
done
|
|
|