Bug 921681 - Don't build ICU in developer builds. r=ted

This commit is contained in:
Mike Hommey 2013-10-02 08:02:22 +09:00
Родитель aed1963cd4
Коммит 69a4552946
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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.