Install updater.ini into the proper place on Mac OSX.

This commit is contained in:
darin%meer.net 2005-06-21 20:26:54 +00:00
parent 493b61ef0c
commit 8919aecd75

View File

@ -230,7 +230,11 @@ ifdef MOZ_UPDATER
libs:: $(addprefix $(LOCALE_SRCDIR)/,updater/updater.ini)
ifeq ($(OS_ARCH),WINNT)
iconv -f UTF-8 -t $(WIN_INSTALLER_CHARSET) $< > $(FINAL_TARGET)/updater.ini
else
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
$(INSTALL) $^ $(FINAL_TARGET)/updater.app/Contents/MacOS
else
$(INSTALL) $^ $(FINAL_TARGET)
endif
endif
endif