Bug 920915 - Use correct manifest dependencies; r=gps

This commit is contained in:
Mike Shal 2013-09-26 15:27:17 -04:00
parent e277c7a67e
commit b3030c3bb0
2 changed files with 6 additions and 2 deletions

View File

@ -82,7 +82,9 @@ ifeq ($(OS_ARCH),WINNT)
RCINCLUDE = splash.rc
# Rebuild firefox.exe if the manifest changes - it's included by splash.rc.
# (this dependency should really be just for firefox.exe, not other targets)
EXTRA_DEPS += $(PROGRAM).manifest
# Note the manifest file exists in the tree, so we use the explicit filename
# here.
EXTRA_DEPS += firefox.exe.manifest
ifndef GNU_CC
RCFLAGS += -DMOZ_PHOENIX -I$(srcdir)
else

View File

@ -55,7 +55,9 @@ include $(topsrcdir)/ipc/chromium/chromium-config.mk
LDFLAGS += $(MOZ_ALLOW_HEAP_EXECUTE_FLAGS)
ifeq ($(OS_ARCH),WINNT) #{
EXTRA_DEPS += $(PROGRAM).manifest
# Note the manifest file exists in the tree, so we use the explicit filename
# here.
EXTRA_DEPS += plugin-container.exe.manifest
#
# Control the default heap size.
# This is the heap returned by GetProcessHeap().