summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>2002-11-07 01:02:35 +0000
committerMiles Bader <miles@gnu.org>2002-11-07 01:02:35 +0000
commitc0d31f4091ec3690038c8e28137ccbab4b280b59 (patch)
tree637500245da94d8e9003defc6d352aa32c0c17e5 /Makefile.in
parent70ea0462017e4b08c8e89dd20565b9eb6aaf4e79 (diff)
downloademacs-c0d31f4091ec3690038c8e28137ccbab4b280b59.tar.gz
(maybe_bootstrap): Fix shell variable usage. Handle separate-build-dir case.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 7640d911129..87f1ea6112e 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -715,8 +715,8 @@ dvi:
.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."; \