emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/make-dist


From: Lute Kamstra
Subject: [Emacs-diffs] Changes to emacs/make-dist
Date: Wed, 13 Apr 2005 05:33:35 -0400

Index: emacs/make-dist
diff -c emacs/make-dist:1.209 emacs/make-dist:1.210
*** emacs/make-dist:1.209       Mon Jun 21 11:57:12 2004
--- emacs/make-dist     Wed Apr 13 09:33:35 2005
***************
*** 6,12 ****
  #### be distributed.  This means that if you add a file with an odd name,
  #### you should make sure that this script will include it.
  
! # Copyright (C) 1995, 1997, 1998, 2000, 2001, 2002 Free Software Foundation, 
Inc.
  #
  # This file is part of GNU Emacs.
  #
--- 6,13 ----
  #### be distributed.  This means that if you add a file with an odd name,
  #### you should make sure that this script will include it.
  
! # Copyright (C) 1995, 1997, 1998, 2000, 2001, 2002, 2005 
! #   Free Software Foundation, Inc.
  #
  # This file is part of GNU Emacs.
  #
***************
*** 195,215 ****
    rm -f /tmp/el /tmp/elc
  
    ### Check for .el files with no corresponding .elc file.
!   (cd lisp; ls -1 [a-z]*.el [a-z]*/[a-z]*.el ; \
!    cd ../leim; ls -1 [a-z]*/[a-z]*.el) > /tmp/el
!   (cd lisp; ls -1 [a-z]*.elc [a-z]*/[a-z]*.elc; \
!    cd ../leim; ls -1 [a-z]*/[a-z]*.elc) | sed 's/\.elc$/.el/' > /tmp/elc
    losers="`comm -23 /tmp/el /tmp/elc`"
    bogosities=
    for file in $losers; do
!     file1=`echo $file | sed -e "s|.*/||"`
!     if ! sed -n -e "/^DONTCOMPILE/,/[^\\]\$/p" lisp/Makefile.in |
!        grep -q "[     ]$file1\($\| \)"; then
        case $file in
        site-init.el | site-load.el | site-start.el | default.el)
          ;;
-       term/*)
-         ;;
        *)
          bogosities="$file $bogosities"
          ;;
--- 196,212 ----
    rm -f /tmp/el /tmp/elc
  
    ### Check for .el files with no corresponding .elc file.
!   ls -1 lisp/[a-z]*.el lisp/[a-z]*/[a-z]*.el \
!       leim/[a-z]*/[a-z]*.el > /tmp/el
!   ls -1 lisp/[a-z]*.elc lisp/[a-z]*/[a-z]*.elc \
!       leim/[a-z]*/[a-z]*.elc | sed 's/\.elc$/.el/' > /tmp/elc
    losers="`comm -23 /tmp/el /tmp/elc`"
    bogosities=
    for file in $losers; do
!     if ! grep -q "no-byte-compile: t" $file; then
        case $file in
        site-init.el | site-load.el | site-start.el | default.el)
          ;;
        *)
          bogosities="$file $bogosities"
          ;;




reply via email to

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