Bug 715749 - service broke builds with --disable-updater. r=rstrong

This commit is contained in:
Brian R. Bondy 2012-01-10 11:28:50 -05:00
Родитель 056fcab476
Коммит 189d64a0a9
2 изменённых файлов: 14 добавлений и 1 удалений

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

@ -95,4 +95,5 @@ endif
# Pick up nsWindowsRestart.cpp
LOCAL_INCLUDES += -I$(topsrcdir)/toolkit/xre \
-I$(topsrcdir)/toolkit/mozapps/update/common
-I$(topsrcdir)/toolkit/mozapps/update/common \
$(NULL)

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

@ -63,6 +63,18 @@ EXTRA_PP_COMPONENTS += \
nsUpdateServiceStub.js \
nsUpdateService.manifest \
$(NULL)
else
# If only the maintenance service is installed and not
# the updater, then the maintenance service may still be
# used for other things. We need to build update/common
# which the maintenance service uses.
ifdef MOZ_MAINTENANCE_SERVICE
DIRS = ../readstrings
ifneq ($(OS_TARGET),Android)
DIRS += common
endif
endif
endif
ifdef ENABLE_TESTS