first crack at getting a stub installer going.

Try to pass in INSTALLER_URL into the installer script
This commit is contained in:
scott%scott-macgregor.org 2004-05-18 21:14:25 +00:00
Родитель 2416426a01
Коммит 41d053db44
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -47,8 +47,12 @@ export MOZ_SRC
CONFIG_DIR=$(shell cygpath -wa $(srcdir))
ifeq (,$(INSTALLER_URL))
INSTALLER_URL = "http://ftp.mozilla.org/pub/mozilla.org/pub/thunderbird/nightly/latest-trunk/windows-xpi"
endif
installer:
cd $(topsrcdir)/toolkit/mozapps/installer/windows && perl build_static.pl -config "$(CONFIG_DIR)"
cd $(topsrcdir)/toolkit/mozapps/installer/windows && perl build_static.pl -config "$(CONFIG_DIR)" -aurl $(INSTALLER_URL)
include $(topsrcdir)/config/rules.mk