Until I can think of a better way, use platform specific versions of installed-chrome.txt and copy the right one based on the current platform over to dist\thunderbird\chrome\installed-chrome.txt. This isn't going to scale very well for OS2/OSX/etc. I'm not sure what to do about that yet.

Polish up the mozilla\config stuff to make it work for unix. Some of this came from Alexander Sack. Thaks for the great work Alexander!
This commit is contained in:
scott%scott-macgregor.org 2004-03-11 07:38:34 +00:00
Родитель a81496283e
Коммит 7d813be89e
1 изменённых файлов: 7 добавлений и 0 удалений

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

@ -28,8 +28,15 @@ include $(DEPTH)/config/autoconf.mk
DIRS = base components extensions app
# this will get cleaned up once OSX comes on board. We won't need platform specific ifdefs for
# entering mail\config
ifeq ($(OS_ARCH),WINNT)
DIRS += config
endif
ifeq ($(OS_ARCH),Linux)
DIRS += config
endif
include $(topsrcdir)/config/rules.mk