emacs-pretest-bug
[Top][All Lists]
Advanced

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

Re: make bootstrap failed


From: Kenichi Handa
Subject: Re: make bootstrap failed
Date: Mon, 29 Mar 2004 11:34:22 +0900 (JST)
User-agent: SEMI/1.14.3 (Ushinoya) FLIM/1.14.2 (Yagi-Nishiguchi) APEL/10.2 Emacs/21.3 (sparc-sun-solaris2.6) MULE/5.0 (SAKAKI)

In article <address@hidden>, Katsumi Yamaoka <address@hidden> writes:

> Handa-san, could you please install it?

Stefan Monnier <address@hidden> writes:
>>  EMACSLOADPATH=/home/pfeiffer/.emacs.d/cvs/lisp ../src/bootstrap-emacs ne
>                               ^^^

> Don't work in hidden directories.  There's a bug in lisp/Makefile.in
> which Handa has a fix for but hasn't installed yet.

As I see no objection to my patch, and it seems that people
keep suffering from this problem, I've just installed the
attached fix.

---
Ken'ichi HANDA
address@hidden

2004-03-29  Kenichi Handa  <address@hidden>

        * Makefile.in (setwins, setwins_almost): Change directory to $wd
        before finding directories by `find'.

*** Makefile.in.~1.53.~ Mon Mar  8 08:01:38 2004
--- Makefile.in Wed Mar 10 10:10:52 2004
***************
*** 136,152 ****
  
  # Common command to find subdirectories
  
! setwins=subdirs=`find $$wd -type d -print`; \
        for file in $$subdirs; do \
           case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | 
*/=* ) ;; \
!               *) wins="$$wins $$file" ;; \
           esac; \
          done
  
! setwins_almost=subdirs=`find $$wd -type d -print`; \
        for file in $$subdirs; do \
           case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | 
*/=* | */obsolete | */term ) ;; \
!               *) wins="$$wins $$file" ;; \
           esac; \
          done
  
--- 136,152 ----
  
  # Common command to find subdirectories
  
! setwins=subdirs=`(cd $$wd; find . -type d -print)`; \
        for file in $$subdirs; do \
           case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | 
*/=* ) ;; \
!               *) wins="$$wins $$wd/$$file" ;; \
           esac; \
          done
  
! setwins_almost=subdirs=`(cd $$wd; find . -type d -print)`; \
        for file in $$subdirs; do \
           case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | 
*/=* | */obsolete | */term ) ;; \
!               *) wins="$$wins $$wd/$$file" ;; \
           esac; \
          done
  




reply via email to

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