emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Emacs cvs newbie problems


From: Richard Stallman
Subject: Re: Emacs cvs newbie problems
Date: Sat, 14 Sep 2002 21:50:24 -0400

Please try this patch--it should make the first issue easier to understand,
and explain how to solve the second.

*** Makefile.in.~1.266.~        Wed Sep 11 23:16:28 2002
--- Makefile.in Sat Sep 14 15:12:24 2002
***************
*** 715,723 ****
  .PHONY: maybe_bootstrap
  
  maybe_bootstrap:
!       @if [ ! -f $(srcdir)/lisp/abbrev.elc ]; then \
!         echo "Essential Lisp files seem to be missing.  You should either"; \
!         echo "do \`make bootstrap' or create \`lisp/abbrev.elc' somehow.";    
\
          exit 1;\
        fi
  
--- 715,725 ----
  .PHONY: maybe_bootstrap
  
  maybe_bootstrap:
!         @bar=`echo ./lisp/*.elc`; \
!       if [ "$bar" = './lisp/*.elc' ]; then \
!         echo "Your tree does not include the compiled Lisp files."; \
!         echo "You need to do \`make bootstrap' to build Emacs."; \
!         echo "Emacs now requires Texinfo version 4.2."; \
          exit 1;\
        fi
  




reply via email to

[Prev in Thread] Current Thread [Next in Thread]