# HG changeset patch # User Miles Bader # Date 1036630955 0 # Node ID f53a6c75be8aa6cd8a87470134e638d175d7bef9 # Parent d268bc13e50fc3fe7cf50cc1a49899c91cc46343 (maybe_bootstrap): Fix shell variable usage. Handle separate-build-dir case. diff -r d268bc13e50f -r f53a6c75be8a Makefile.in --- a/Makefile.in Thu Nov 07 00:26:27 2002 +0000 +++ b/Makefile.in Thu Nov 07 01:02:35 2002 +0000 @@ -715,8 +715,8 @@ .PHONY: maybe_bootstrap maybe_bootstrap: - @bar="`echo ./lisp/*.elc`"; \ - if [ \( "$(bar)" = './lisp/*.elc' \) -o \( "$(bar)" = '' \) ]; then \ + @bar="`echo $(srcdir)/lisp/*.elc`"; \ + if [ \( "$$bar" = '$(srcdir)/lisp/*.elc' \) -o \( "$bar" = '' \) ]; 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."; \