From 69a455294694e4696a6d5588529c2ae0d8a432d4 Mon Sep 17 00:00:00 2001 From: Mike Hommey Date: Wed, 2 Oct 2013 08:02:22 +0900 Subject: [PATCH] Bug 921681 - Don't build ICU in developer builds. r=ted --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 0559b94cc096..61a7718b79c9 100644 --- a/configure.in +++ b/configure.in @@ -9207,7 +9207,7 @@ MOZ_ARG_WITH_STRING(intl-api, WITH_INTL="--with-intl-api=$withval" ]) if test -z "$WITH_INTL"; then -if test "$NIGHTLY_BUILD" = "1" -a "$MOZ_BUILD_APP" = "browser"; then +if test "$NIGHTLY_BUILD" = "1" -a "$MOZ_BUILD_APP" = "browser" -a -z "$DEVELOPER_OPTIONS"; then # In desktop nightlies the Internationalization API is disabled, but all # code for it is still built. Bug 853301 will remove this so that it's # built and the API is enabled.