Skip to content
Snippets Groups Projects
Commit b09a4612 authored by slamm%netscape.com's avatar slamm%netscape.com
Browse files

Removing config.cache from dependencies, because configure does not always...

Removing config.cache from dependencies, because configure does not always update config.cache. (I ended up running configure each time I ran client.mk because configure was newer than config.cache).
parent a54a1900
No related merge requests found
...@@ -229,12 +229,12 @@ $(TOPSRCDIR)/configure: $(TOPSRCDIR)/configure.in $(EXTRA_CONFIG_DEPS) ...@@ -229,12 +229,12 @@ $(TOPSRCDIR)/configure: $(TOPSRCDIR)/configure.in $(EXTRA_CONFIG_DEPS)
cd $(TOPSRCDIR); $(AUTOCONF) cd $(TOPSRCDIR); $(AUTOCONF)
endif endif
$(OBJDIR)/Makefile $(OBJDIR)/config.status $(OBJDIR)/config.cache: $(TOPSRCDIR)/configure $(TOPSRCDIR)/allmakefiles.sh $(TOPSRCDIR)/.client-defs.mk $(OBJDIR)/Makefile $(OBJDIR)/config.status: $(TOPSRCDIR)/configure $(TOPSRCDIR)/allmakefiles.sh $(TOPSRCDIR)/.client-defs.mk
@if test ! -d $(OBJDIR); then $(MKDIR) $(OBJDIR); else true; fi @if test ! -d $(OBJDIR); then $(MKDIR) $(OBJDIR); else true; fi
@echo cd $(OBJDIR); @echo cd $(OBJDIR);
@echo ../configure @echo ../configure
@cd $(OBJDIR) && \ @cd $(OBJDIR) && \
$(TOPSRCDIR)/configure $(CONFIG_FLAGS) \ $(TOPSRCDIR)/configure \
|| ( echo "*** Fix above errors and then restart with\ || ( echo "*** Fix above errors and then restart with\
\"$(MAKE) -f client.mk build\"" && exit 1 ) \"$(MAKE) -f client.mk build\"" && exit 1 )
...@@ -248,13 +248,13 @@ endif ...@@ -248,13 +248,13 @@ endif
#################################### ####################################
# Depend # Depend
depend: $(OBJDIR)/Makefile $(OBJDIR)/config.status $(OBJDIR)/config.cache depend: $(OBJDIR)/Makefile $(OBJDIR)/config.status
cd $(OBJDIR); $(MAKE) $@; cd $(OBJDIR); $(MAKE) $@;
#################################### ####################################
# Build it # Build it
build: $(OBJDIR)/Makefile $(OBJDIR)/config.status $(OBJDIR)/config.cache build: $(OBJDIR)/Makefile $(OBJDIR)/config.status
cd $(OBJDIR); $(MAKE); cd $(OBJDIR); $(MAKE);
#################################### ####################################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment