From: Mike Hommey Date: Sun, 25 Sep 2016 00:22:22 +0000 (+0900) Subject: Allow to override ICU_DATA_FILE from the environment X-Git-Tag: archive/raspbian/60.7.0esr-1+rpi1^2~8 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=37b1f2ca5268db5f22a5b57c4d79fac7671b7fac;p=firefox-esr.git Allow to override ICU_DATA_FILE from the environment Gbp-Pq: Topic debian-hacks Gbp-Pq: Name Allow-to-override-ICU_DATA_FILE-from-the-environment.patch --- diff --git a/build/autoconf/icu.m4 b/build/autoconf/icu.m4 index 4c59079bf29..662efc6e92e 100644 --- a/build/autoconf/icu.m4 +++ b/build/autoconf/icu.m4 @@ -78,7 +78,9 @@ if test -n "$USE_ICU"; then # TODO: the l is actually endian-dependent # We could make this set as 'l' or 'b' for little or big, respectively, # but we'd need to check in a big-endian version of the file. - ICU_DATA_FILE="icudt${version}l.dat" + if test -z "$ICU_DATA_FILE"; then + ICU_DATA_FILE="icudt${version}l.dat" + fi MOZ_ICU_DATA_ARCHIVE= fi