* Bootstrap shouldn't give up due to missing xrefs in the manual
@ 2004-12-01 2:57 Richard Stallman
2004-12-01 3:18 ` Denis Bueno
2004-12-01 4:33 ` Luc Teirlinck
0 siblings, 2 replies; 3+ messages in thread
From: Richard Stallman @ 2004-12-01 2:57 UTC (permalink / raw)
Does this patch eliminate the problem?
*** Makefile.in 11 Nov 2004 09:58:10 -0500 1.298
--- Makefile.in 30 Nov 2004 21:19:32 -0500
***************
*** 719,727 ****
# put the info files in $(srcdir),
# so we can do ok running make in the build dir.
info: force-info
! (cd man; $(MAKE) $(MFLAGS) info)
! (cd lispref; $(MAKE) $(MFLAGS) info)
! (cd lispintro; $(MAKE) $(MFLAGS) info)
dvi:
(cd man; $(MAKE) $(MFLAGS) dvi)
(cd lispref; $(MAKE) $(MFLAGS) elisp.dvi)
--- 719,727 ----
# put the info files in $(srcdir),
# so we can do ok running make in the build dir.
info: force-info
! -(cd man; $(MAKE) $(MFLAGS) info)
! -(cd lispref; $(MAKE) $(MFLAGS) info)
! -(cd lispintro; $(MAKE) $(MFLAGS) info)
dvi:
(cd man; $(MAKE) $(MFLAGS) dvi)
(cd lispref; $(MAKE) $(MFLAGS) elisp.dvi)
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Bootstrap shouldn't give up due to missing xrefs in the manual
2004-12-01 2:57 Bootstrap shouldn't give up due to missing xrefs in the manual Richard Stallman
@ 2004-12-01 3:18 ` Denis Bueno
2004-12-01 4:33 ` Luc Teirlinck
1 sibling, 0 replies; 3+ messages in thread
From: Denis Bueno @ 2004-12-01 3:18 UTC (permalink / raw)
Cc: emacs-devel
On 30 Nov 2004, at 21.57, Richard Stallman wrote:
> Does this patch eliminate the problem?
Works for me, on 30 Nov.
uname -a: Darwin johngalt.local 7.6.0 Darwin Kernel Version 7.6.0: Sun
Oct 10 12:05:27 PDT 2004; root:xnu/xnu-517.9.4.obj~1/RELEASE_PPC Power
Macintosh powerpc
>
> *** Makefile.in 11 Nov 2004 09:58:10 -0500 1.298
> --- Makefile.in 30 Nov 2004 21:19:32 -0500
> ***************
> *** 719,727 ****
> # put the info files in $(srcdir),
> # so we can do ok running make in the build dir.
> info: force-info
> ! (cd man; $(MAKE) $(MFLAGS) info)
> ! (cd lispref; $(MAKE) $(MFLAGS) info)
> ! (cd lispintro; $(MAKE) $(MFLAGS) info)
> dvi:
> (cd man; $(MAKE) $(MFLAGS) dvi)
> (cd lispref; $(MAKE) $(MFLAGS) elisp.dvi)
> --- 719,727 ----
> # put the info files in $(srcdir),
> # so we can do ok running make in the build dir.
> info: force-info
> ! -(cd man; $(MAKE) $(MFLAGS) info)
> ! -(cd lispref; $(MAKE) $(MFLAGS) info)
> ! -(cd lispintro; $(MAKE) $(MFLAGS) info)
> dvi:
> (cd man; $(MAKE) $(MFLAGS) dvi)
> (cd lispref; $(MAKE) $(MFLAGS) elisp.dvi)
>
>
> _______________________________________________
> Emacs-devel mailing list
> Emacs-devel@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-devel
>
>
--
Denis Bueno
PGP: http://pgp.mit.edu:11371/pks/lookup?search=0xA1B51B4B&op=index
"Be careful about reading health books. You may die of a misprint." -
Mark Twain
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Bootstrap shouldn't give up due to missing xrefs in the manual
2004-12-01 2:57 Bootstrap shouldn't give up due to missing xrefs in the manual Richard Stallman
2004-12-01 3:18 ` Denis Bueno
@ 2004-12-01 4:33 ` Luc Teirlinck
1 sibling, 0 replies; 3+ messages in thread
From: Luc Teirlinck @ 2004-12-01 4:33 UTC (permalink / raw)
Cc: emacs-devel
Richard Stallman wrote:
Does this patch eliminate the problem?
*** Makefile.in 11 Nov 2004 09:58:10 -0500 1.298
--- Makefile.in 30 Nov 2004 21:19:32 -0500
***************
*** 719,727 ****
# put the info files in $(srcdir),
# so we can do ok running make in the build dir.
info: force-info
! (cd man; $(MAKE) $(MFLAGS) info)
! (cd lispref; $(MAKE) $(MFLAGS) info)
! (cd lispintro; $(MAKE) $(MFLAGS) info)
dvi:
(cd man; $(MAKE) $(MFLAGS) dvi)
(cd lispref; $(MAKE) $(MFLAGS) elisp.dvi)
--- 719,727 ----
# put the info files in $(srcdir),
# so we can do ok running make in the build dir.
info: force-info
! -(cd man; $(MAKE) $(MFLAGS) info)
! -(cd lispref; $(MAKE) $(MFLAGS) info)
! -(cd lispintro; $(MAKE) $(MFLAGS) info)
dvi:
(cd man; $(MAKE) $(MFLAGS) dvi)
(cd lispref; $(MAKE) $(MFLAGS) elisp.dvi)
For me that gives the same problem with a "missing separator" as your
other patch. Because it apparently worked for somebody else,
something must be going locally wrong. I will try to figure out what.
So the problem with your other patch I replied about previously might
be local too.
I can not check out the effects of the patch above because it somehow
breaks bootstrapping for me. (Again, probably just a local problem.)
But how are people going to notice after your patch that there were
problems building a manual? Hopefully that will still be completely
apparent and impossible to overlook and hopefully people will still
point it out to emacs-pretest-bug or emacs-devel. Otherwise, this
could, in my opinion, be a step backward.
Sincerely,
Luc.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2004-12-01 4:33 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-12-01 2:57 Bootstrap shouldn't give up due to missing xrefs in the manual Richard Stallman
2004-12-01 3:18 ` Denis Bueno
2004-12-01 4:33 ` Luc Teirlinck
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.