# HG changeset patch # User Richard M. Stallman # Date 1036559609 0 # Node ID 702b483d4de779cc646f6b0b92ee0208d6e5ecaa # Parent ca63c953d54b242568011d93161a925f8a2a680d (maybe_bootstrap): Add doublequotes to make it bulletproof. $bar may be empty when there are no .elc files. diff -r ca63c953d54b -r 702b483d4de7 Makefile.in --- a/Makefile.in Wed Nov 06 05:11:59 2002 +0000 +++ b/Makefile.in Wed Nov 06 05:13:29 2002 +0000 @@ -715,8 +715,8 @@ .PHONY: maybe_bootstrap maybe_bootstrap: - @bar=`echo ./lisp/*.elc`; \ - if [ "$bar" = './lisp/*.elc' ]; then \ + @bar="`echo ./lisp/*.elc`"; \ + if [ \( "$(bar)" = './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."; \