comparison Makefile.in @ 48189:f53a6c75be8a

(maybe_bootstrap): Fix shell variable usage. Handle separate-build-dir case.
author Miles Bader <miles@gnu.org>
date Thu, 07 Nov 2002 01:02:35 +0000
parents 702b483d4de7
children 2cda842f35f6
comparison
equal deleted inserted replaced
48188:d268bc13e50f 48189:f53a6c75be8a
713 713
714 .PHONY: bootstrap 714 .PHONY: bootstrap
715 .PHONY: maybe_bootstrap 715 .PHONY: maybe_bootstrap
716 716
717 maybe_bootstrap: 717 maybe_bootstrap:
718 @bar="`echo ./lisp/*.elc`"; \ 718 @bar="`echo $(srcdir)/lisp/*.elc`"; \
719 if [ \( "$(bar)" = './lisp/*.elc' \) -o \( "$(bar)" = '' \) ]; then \ 719 if [ \( "$$bar" = '$(srcdir)/lisp/*.elc' \) -o \( "$bar" = '' \) ]; then \
720 echo "Your tree does not include the compiled Lisp files."; \ 720 echo "Your tree does not include the compiled Lisp files."; \
721 echo "You need to do \`make bootstrap' to build Emacs."; \ 721 echo "You need to do \`make bootstrap' to build Emacs."; \
722 echo "Emacs now requires Texinfo version 4.2."; \ 722 echo "Emacs now requires Texinfo version 4.2."; \
723 exit 1;\ 723 exit 1;\
724 fi 724 fi