Bug 330231 - Firefox should use common controls 6.0 dialogs - patch by luser, r=me

This commit is contained in:
benjamin%smedbergs.us 2006-03-21 14:49:45 +00:00
Родитель 4ab3ceb1e4
Коммит 81b6cec562
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -821,7 +821,11 @@ ifeq (_WINNT,$(GNU_CC)_$(OS_ARCH))
$(LD) -NOLOGO -OUT:$@ -PDB:$(PDBFILE) $(WIN32_EXE_LDFLAGS) $(LDFLAGS) $(PROGOBJS) $(RESFILE) $(LIBS) $(EXTRA_LIBS) $(OS_LIBS)
ifdef MSMANIFEST_TOOL
@if test -f $@.manifest; then \
mt.exe -NOLOGO -MANIFEST $@.manifest -OUTPUTRESOURCE:$@\;1; \
if test -f "$(srcdir)/$@.manifest"; then \
mt.exe -NOLOGO -MANIFEST "$(win_srcdir)/$@.manifest" $@.manifest -OUTPUTRESOURCE:$@\;1; \
else \
mt.exe -NOLOGO -MANIFEST $@.manifest -OUTPUTRESOURCE:$@\;1; \
fi; \
rm -f $@.manifest; \
fi
endif # MSVC with manifest tool