add env var control to stub installer xpi url; version based on milestone,

and installer name based on config settings.
This commit is contained in:
leaf%mozilla.org 2003-10-16 20:06:23 +00:00
Родитель f3bfd8b281
Коммит 36abf5f4fc
1 изменённых файлов: 13 добавлений и 1 удалений

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

@ -29,8 +29,20 @@ include $(DEPTH)/config/autoconf.mk
MODULE = xpinstall
B_NAME = mozilla-$(TARGET_CPU)-$(TARGET_VENDOR)-$(TARGET_OS)-$(MOZILLA_VERSION)
STUB_NAME = $(B_NAME)-installer
SEA_NAME = $(B_NAME)-full-installer
ifndef INSTALLER_URL
INSTALLER_URL = "http://ftp.mozilla.org/pub/mozilla.org/pub/mozilla/nightly/latest-trunk/linux-xpi"
endif
installer:
$(PERL) $(srcdir)/deliver.pl -o $(DEPTH) -s $(topsrcdir)
$(PERL) $(srcdir)/deliver.pl $(MOZILLA_VERSION) \
$(INSTALLER_URL) \
$(STUB_NAME) \
$(SEA_NAME) \
-o $(DEPTH) -s $(topsrcdir)
include $(topsrcdir)/config/rules.mk