Hack for post-mozilla-rel.pl on Linux (until Firefox installer is hooked up). Ensure /installer exists since the packaging looks for it.

This commit is contained in:
bryner%brianryner.com 2004-03-25 03:49:32 +00:00
Родитель 2e4b74e33d
Коммит bade16acd2
1 изменённых файлов: 7 добавлений и 0 удалений

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

@ -66,3 +66,10 @@ NO_PKG_FILES = \
$(NULL)
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