Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
ef7fb3bb
Commit
ef7fb3bb
authored
Sep 15, 2002
by
Richard M. Stallman
Browse files
(maybe_bootstrap): Test for complete absence of compiled Lisp files.
parent
0b7bc76f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
3 deletions
+10
-3
ChangeLog
ChangeLog
+5
-0
Makefile.in
Makefile.in
+5
-3
No files found.
ChangeLog
View file @
ef7fb3bb
2002-09-14 Richard M. Stallman <rms@gnu.org>
* Makefile.in (maybe_bootstrap): Test for complete absence
of compiled Lisp files.
2002-09-11 Stefan Monnier <monnier@cs.yale.edu>
* Makefile.in (bootstrap-lisp-1, bootstrap-lisp, bootstrap)
...
...
Makefile.in
View file @
ef7fb3bb
...
...
@@ -715,9 +715,11 @@ dvi:
.PHONY
:
maybe_bootstrap
maybe_bootstrap
:
@
if
[
!
-f
$(srcdir)
/lisp/abbrev.elc
]
;
then
\
echo
"Essential Lisp files seem to be missing. You should either"
;
\
echo
"do
\`
make bootstrap' or create
\`
lisp/abbrev.elc' somehow."
;
\
@
bar
=
`
echo
./lisp/
*
.elc
`
;
\
if
[
"
$bar
"
=
'./lisp/*.elc'
]
;
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."
;
\
exit
1
;
\
fi
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment