If the tree hasn't been pulled, client.mk needs to checkout build/autoconf/myconfig2defs.sh before it does anything else.

This commit is contained in:
slamm%netscape.com 1999-02-22 18:48:51 +00:00
Родитель c439a89d79
Коммит 56461051b5
1 изменённых файлов: 7 добавлений и 1 удалений

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

@ -84,8 +84,14 @@ endif
# Load options from myconfig.sh
# (See build pages, http://www.mozilla.org/build/unix.html,
# for how to set up myconfig.sh.)
# Check out the conversion script if it hasn't been checked out.
MYCONFIG2DEFS := build/autoconf/myconfig2defs.sh
run_for_side_effects := \
$(shell build/autoconf/myconfig2defs.sh $(TOPSRCDIR)/.client-defs.mk)
$(shell if test ! -f $(TOPSRCDIR)/$(MYCONFIG2DEFS); then \
cd $(ROOTDIR); \
cvs co mozilla/$(MYCONFIG2DEFS); \
fi; \
$(TOPSRCDIR)/$(MYCONFIG2DEFS) $(TOPSRCDIR)/.client-defs.mk)
-include $(TOPSRCDIR)/.client-defs.mk
ifdef MOZ_OBJDIR