emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

NT Emacs lisp/Makefile problem


From: David PONCE
Subject: NT Emacs lisp/Makefile problem
Date: Mon, 27 Jan 2003 09:27:54 +0100 (MET)

Hi All,

Doing a make bootstrap install "from scratch" of GNU Emacs 21.3.50.1
(latest CVS) fails at the "make autoloads" step in the lisp directory
with the following message:

Cannot open load file: encoded-kb
Signal 127
make: *** [autoloads] Error 255

I build NT Emacs using this MINGW environment:

- gcc      3.2.1 (20021202-2)
- make     3.79.1.
- runtime  2.2
- w32api   2.1
- binutils 2.13.90 (20030111-1)

and

- ash 20020731-1 (CYGWIN)

After some investigation I found that occurred because the `load-path'
was not setup correctly.

The issue is that the Makefile generated from lisp/makefile.w32-in
don't create the lisp/subdirs.el file when make use the `sh' shell.

The following patch fixed the problem.

Hope it helps.
David

Index: lisp/makefile.w32-in
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/makefile.w32-in,v
retrieving revision 1.28
diff -c -r1.28 makefile.w32-in
*** lisp/makefile.w32-in        26 Jan 2003 02:38:37 -0000      1.28
--- lisp/makefile.w32-in        27 Jan 2003 07:13:03 -0000
***************
*** 236,241 ****
--- 236,242 ----
        echo ))>> subdirs.el

  update-subdirs-SH: doit
+       $(srcdir)/update-subdirs $(lisp); \
        for file in $(WINS); do \
           $(srcdir)/update-subdirs $$file; \
        done;







reply via email to

[Prev in Thread] Current Thread [Next in Thread]