all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* 23.0.60; emacs-unicode-2: bootstrap failed
@ 2007-11-12  4:38 Zhang Wei
  2007-11-12  6:17 ` Katsumi Yamaoka
  0 siblings, 1 reply; 4+ messages in thread
From: Zhang Wei @ 2007-11-12  4:38 UTC (permalink / raw)
  To: emacs-pretest-bug


RUNEMACS="`/bin/pwd`/temacs"; cd /home/brep/emacs-unicode-2/src/../admin/unidata; make -w RUNEMACS="${RUNEMACS}" DSTDIR=/home/brep/emacs-unicode-2/src/../lisp/international
make[3]: Entering directory `/home/brep/emacs-unicode-2/admin/unidata'
/home/brep/emacs-unicode-2/src/temacs -batch -f batch-byte-compile unidata-gen.el
Loading loadup.el (source)...
Using load-path (/home/brep/emacs-unicode-2/lisp /home/brep/emacs-unicode-2/lisp/emacs-lisp /home/brep/emacs-unicode-2/lisp/language /home/brep/emacs-unicode-2/lisp/international /home/brep/emacs-unicode-2/lisp/textmodes)
Loading emacs-lisp/byte-run (source)...
Loading emacs-lisp/backquote (source)...
Loading subr (source)...
Loading version.el (source)...
Loading widget (source)...
Loading custom (source)...
Loading emacs-lisp/map-ynp (source)...
Loading cus-start (source)...
Loading international/mule (source)...
Loading international/mule-conf.el (source)...
Loading env (source)...
Loading format (source)...
Loading bindings (source)...
Loading /home/brep/emacs-unicode-2/lisp/files.el (source)...
Loading /home/brep/emacs-unicode-2/lisp/cus-face.el (source)...
Loading /home/brep/emacs-unicode-2/lisp/faces.el (source)...
Loading /home/brep/emacs-unicode-2/lisp/button.el (source)...
Loading /home/brep/emacs-unicode-2/lisp/startup.el (source)...
Lists of integers (garbage collection statistics) are normal output
while building Emacs; they do not indicate a problem.
((106613 . 38045) (6133 . 45) (594 . 86) 437445 1034325 (27 . 1) (19 . 0) (8895 . 429))
Loading /home/brep/emacs-unicode-2/lisp/loaddefs.el (source)...
Wrong number of arguments: autoload, 12
make[3]: *** [unidata-gen.elc] Error 255
make[3]: Leaving directory `/home/brep/emacs-unicode-2/admin/unidata'
make[2]: *** [/home/brep/emacs-unicode-2/src/../lisp/international/charprop.el] Error 2
make[2]: Leaving directory `/home/brep/emacs-unicode-2/src'
make[1]: *** [bootstrap-build] Error 2
make[1]: Leaving directory `/home/brep/emacs-unicode-2'
make: *** [bootstrap] Error 2

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: 23.0.60; emacs-unicode-2: bootstrap failed
  2007-11-12  4:38 23.0.60; emacs-unicode-2: bootstrap failed Zhang Wei
@ 2007-11-12  6:17 ` Katsumi Yamaoka
  2007-11-12  9:12   ` Jason Rumney
  0 siblings, 1 reply; 4+ messages in thread
From: Katsumi Yamaoka @ 2007-11-12  6:17 UTC (permalink / raw)
  To: emacs-pretest-bug; +Cc: emacs-devel

>>>>> Zhang Wei wrote:

> Loading /home/brep/emacs-unicode-2/lisp/loaddefs.el (source)...
> Wrong number of arguments: autoload, 12

The following patch should solve the problem, however
the ldefs-boot.el file seems to have to be made automatically.
How does it do?

--8<---------------cut here---------------start------------->8---
*** ldefs-boot.el~	Sun Nov 11 21:51:19 2007
--- ldefs-boot.el	Mon Nov 12 06:15:39 2007
***************
*** 29140,29145 ****
--- 29140,29147 ----
  (autoload 'url-file-nondirectory "url-util" "\
  Return the nondirectory part of FILE, for a URL.
  
+ \(fn FILE)" nil nil)
+ 
  (autoload 'url-parse-query-string "url-util" "\
  Not documented
  
--8<---------------cut here---------------end--------------->8---

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: 23.0.60; emacs-unicode-2: bootstrap failed
  2007-11-12  6:17 ` Katsumi Yamaoka
@ 2007-11-12  9:12   ` Jason Rumney
  2007-11-12 10:16     ` Katsumi Yamaoka
  0 siblings, 1 reply; 4+ messages in thread
From: Jason Rumney @ 2007-11-12  9:12 UTC (permalink / raw)
  To: Katsumi Yamaoka; +Cc: emacs-pretest-bug, emacs-devel

Katsumi Yamaoka wrote:
> The following patch should solve the problem, however
> the ldefs-boot.el file seems to have to be made automatically.
>   

Only because it is damaged so bootstrap is failing at this particular point.
Normally you should bootstrap, then copy loaddefs.el to ldefs-boot.el if
you want to update the copy in CVS.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: 23.0.60; emacs-unicode-2: bootstrap failed
  2007-11-12  9:12   ` Jason Rumney
@ 2007-11-12 10:16     ` Katsumi Yamaoka
  0 siblings, 0 replies; 4+ messages in thread
From: Katsumi Yamaoka @ 2007-11-12 10:16 UTC (permalink / raw)
  To: Jason Rumney; +Cc: emacs-pretest-bug, emacs-devel

>>>>> Jason Rumney wrote:

> Katsumi Yamaoka wrote:
>> The following patch should solve the problem, however
>> the ldefs-boot.el file seems to have to be made automatically.

> Only because it is damaged so bootstrap is failing at this particular point.
> Normally you should bootstrap, then copy loaddefs.el to ldefs-boot.el if
> you want to update the copy in CVS.

I see.  I've replaced ldefs-boot.el in CVS with loaddefs.el that
I made by bootstrapping on the Fedora 8 Linux right now.  Thanks.
(I'll try bootstrapping again with this.)

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2007-11-12 10:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-12  4:38 23.0.60; emacs-unicode-2: bootstrap failed Zhang Wei
2007-11-12  6:17 ` Katsumi Yamaoka
2007-11-12  9:12   ` Jason Rumney
2007-11-12 10:16     ` Katsumi Yamaoka

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.