diff options
| author | Richard M. Stallman | 2002-11-06 05:13:29 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-11-06 05:13:29 +0000 |
| commit | dd531b712e3f80150ffbfaba3b79cedd1c6300d1 (patch) | |
| tree | b10326a141774b58781c85adbf33680368048077 | |
| parent | fe6b48735dd5d51d3d8c365921c02a66b6f8ab61 (diff) | |
| download | emacs-dd531b712e3f80150ffbfaba3b79cedd1c6300d1.tar.gz emacs-dd531b712e3f80150ffbfaba3b79cedd1c6300d1.zip | |
(maybe_bootstrap): Add doublequotes to make it bulletproof.
$bar may be empty when there are no .elc files.
| -rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index e972e4b2524..7640d911129 100644 --- a/Makefile.in +++ b/Makefile.in | |||
| @@ -715,8 +715,8 @@ dvi: | |||
| 715 | .PHONY: maybe_bootstrap | 715 | .PHONY: maybe_bootstrap |
| 716 | 716 | ||
| 717 | maybe_bootstrap: | 717 | maybe_bootstrap: |
| 718 | @bar=`echo ./lisp/*.elc`; \ | 718 | @bar="`echo ./lisp/*.elc`"; \ |
| 719 | if [ "$bar" = './lisp/*.elc' ]; then \ | 719 | if [ \( "$(bar)" = './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."; \ |