Move the check that the installer directory was created from browser/installer/Makefile to post-mozilla-rel.pl. This way, we're sure the installer directory will exist when post-mozilla-rel tries to make the dated staging directory under it.

This commit is contained in:
bryner%brianryner.com 2004-03-25 06:42:54 +00:00
parent 401b318ca6
commit 4904d12df5
2 changed files with 2 additions and 7 deletions

View File

@ -67,13 +67,6 @@ NO_PKG_FILES = \
include $(DEPTH)/xpinstall/packager/Makefile
# Hack for post-mozilla-rel.pl. Ensure that the installer directory is created
# even if we didn't build an installer.
libs::
@if [ ! -d $(DEPTH)/installer ]; then \
mkdir $(DEPTH)/installer; \
fi
# Rename the archive after it's created, so that we can differentiate between
# the gtk1 and gtk2 packages on ftp, and so the Windows package has a
# friendlier name.

View File

@ -63,6 +63,8 @@ sub packit {
}
TinderUtils::print_log "INSTALLER_URL is " . $ENV{INSTALLER_URL} . "\n";
mkdir($package_location, 0775);
# the Windows installer scripts currently require Activestate Perl.
# Put it ahead of cygwin perl in the path.
my $save_path;