From 41d053db445af5f703371009a3468cbb470ce997 Mon Sep 17 00:00:00 2001 From: "scott%scott-macgregor.org" Date: Tue, 18 May 2004 21:14:25 +0000 Subject: [PATCH] first crack at getting a stub installer going. Try to pass in INSTALLER_URL into the installer script --- mail/installer/windows/Makefile.in | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/mail/installer/windows/Makefile.in b/mail/installer/windows/Makefile.in index 0905712d50ab..ab72f410feae 100644 --- a/mail/installer/windows/Makefile.in +++ b/mail/installer/windows/Makefile.in @@ -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