]> git.eshelyaron.com Git - emacs.git/commitdiff
* update-subdirs: Move to build-aux/.
authorGlenn Morris <rgm@gnu.org>
Mon, 21 May 2012 20:40:55 +0000 (16:40 -0400)
committerGlenn Morris <rgm@gnu.org>
Mon, 21 May 2012 20:40:55 +0000 (16:40 -0400)
* make-dist:
* Makefile.in (install-arch-indep):
* lisp/Makefile.in (update-subdirs):
* lisp/makefile.w32-in (update-subdirs-SH):
Update for this change.

ChangeLog
Makefile.in
build-aux/update-subdirs [new file with mode: 0755]
lisp/ChangeLog
lisp/Makefile.in
lisp/makefile.w32-in
make-dist
update-subdirs [deleted file]

index dcd8559d7b7138ae728f76da4e6cd06a138ee3b3..f25e9c3681e0cabefe5344ad6fb0a1d3b5cde21d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2012-05-21  Glenn Morris  <rgm@gnu.org>
 
+       * update-subdirs: Move to build-aux/.
+       * make-dist, Makefile.in (install-arch-indep): Update for this change.
+
        * Makefile.in (leimdir): New, set by configure.
        (COPYDIR, COPYDESTS): Add leim directories.
        (install-leim): Remove.
index 2db87aef6ce390323cc72dd36ec2cef6705e247e..763a3644fcda4af9b78bd887d7e6828dde20b2a5 100644 (file)
@@ -523,7 +523,7 @@ install-arch-indep: install-info install-man ${INSTALL_ARCH_INDEP_EXTRA}
        -rm -f $(DESTDIR)${leimdir}/leim-list.el
        ${INSTALL_DATA} leim/leim-list.el $(DESTDIR)${leimdir}/leim-list.el
        -rm -f $(DESTDIR)${lispdir}/subdirs.el
-       umask 022; $(srcdir)/update-subdirs $(DESTDIR)${lispdir}
+       umask 022; $(srcdir)/build-aux/update-subdirs $(DESTDIR)${lispdir}
        subdir=$(DESTDIR)${datadir}/emacs/${version}/site-lisp ; \
          ${write_subdir}
        subdir=$(DESTDIR)${datadir}/emacs/site-lisp ; \
diff --git a/build-aux/update-subdirs b/build-aux/update-subdirs
new file mode 100755 (executable)
index 0000000..e20e0da
--- /dev/null
@@ -0,0 +1,56 @@
+#!/bin/sh
+# Write into $1/subdirs.el a list of subdirs of directory $1.
+
+# Copyright (C) 1994-1995, 1997, 1999, 2001-2012
+#   Free Software Foundation, Inc.
+
+# This file is part of GNU Emacs.
+
+# GNU Emacs is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+
+# GNU Emacs is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
+
+
+cd $1
+for file in *; do
+    case $file in
+       *.elc | *.el | term | RCS | CVS | Old | . | .. | =* | *~ | *.orig | *.rej)
+         ;;
+       *)
+           if [ -d $file ]; then
+               if [ "$file" = "obsolete" ]; then
+                   subdirs="$subdirs \"$file\""
+               else
+                   subdirs="\"$file\" $subdirs"
+               fi
+           fi
+           ;;
+    esac
+done
+
+if [ "x$subdirs" = x ]; then
+  rm -f subdirs.el
+else
+  rm -f subdirs.el~
+  echo ";; In load-path, after this directory should come
+;; certain of its subdirectories.  Here we specify them.
+(normal-top-level-add-to-load-path '($subdirs))
+;; Local" "Variables:
+;; version-control: never
+;; no-byte-compile: t
+;; End:" > subdirs.el~
+  if cmp "subdirs.el" "subdirs.el~" >/dev/null 2>&1; then
+    :; # echo "subdirs.el unchanged";
+  else
+  mv subdirs.el~ subdirs.el
+  fi
+fi
index c7775422417b65ca66a9e2e83168d300e10e02d5..abf0bb66b2e723b32d77f5b40f750e37d60f21ce 100644 (file)
@@ -1,3 +1,8 @@
+2012-05-21  Glenn Morris  <rgm@gnu.org>
+
+       * makefile.w32-in (update-subdirs-SH):
+       * Makefile.in (update-subdirs): Update for moved update-subdirs.
+
 2012-05-21  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
index ff211589f497984075b159c5f0ade47ea48250d8..29ef8e40abeb27d95d3d6bef0174c415b8856a09 100644 (file)
@@ -1,5 +1,5 @@
 # Maintenance productions for the Lisp directory
-# Copyright (C) 2000-2012  Free Software Foundation, Inc.
+# Copyright (C) 2000-2012 Free Software Foundation, Inc.
 
 # This file is part of GNU Emacs.
 
@@ -179,7 +179,7 @@ $(lisp)/subdirs.el:
 update-subdirs: doit
        cd $(lisp); $(setwins_for_subdirs); \
        for file in $$wins; do \
-          $(top_srcdir)/update-subdirs $$file; \
+          $(top_srcdir)/build-aux/update-subdirs $$file; \
        done;
 
 updates: update-subdirs autoloads finder-data custom-deps
index 7907c5f10ceca25375f83f3ccfe11f8389264b0b..6cb8b3dd4955fbf31a09d952953c0b04ac2cc83a 100644 (file)
@@ -1,5 +1,5 @@
 # -*- Makefile -*- for GNU Emacs on the Microsoft W32 API.
-# Copyright (C) 2000-2012  Free Software Foundation, Inc.
+# Copyright (C) 2000-2012 Free Software Foundation, Inc.
 
 # This file is part of GNU Emacs.
 
@@ -243,9 +243,9 @@ update-subdirs-CMD: doit
        echo ;; End:>> $(lisp)/subdirs.el
 
 update-subdirs-SH: doit
-       $(srcdir)/update-subdirs $(lisp); \
+       $(srcdir)/build-aux/update-subdirs $(lisp); \
        for file in $(WINS_SUBDIR); do \
-          $(srcdir)/update-subdirs $$file; \
+          $(srcdir)/build-aux/update-subdirs $$file; \
        done;
 
 updates: update-subdirs autoloads mh-autoloads finder-data custom-deps
index 1e8fc9178f1b61bd25406e45f65ecbc4dd300052..0a12a630526da95a4bd72bb6f2e146230e9cb13a 100755 (executable)
--- a/make-dist
+++ b/make-dist
@@ -285,7 +285,7 @@ mkdir ${tempdir}
 echo "Making links to top-level files"
 ln INSTALL README BUGS ${tempdir}
 ln ChangeLog Makefile.in configure configure.in ${tempdir}
-ln config.bat make-dist update-subdirs .dir-locals.el ${tempdir}
+ln config.bat make-dist .dir-locals.el ${tempdir}
 ln aclocal.m4 ${tempdir}
 
 echo "Creating subdirectories"
@@ -346,7 +346,7 @@ echo "Making links to \`leim' and its subdirectories"
 echo "Making links to \`build-aux'"
 (cd build-aux
  ln compile config.guess config.sub depcomp ../${tempdir}/build-aux
- ln install-sh missing move-if-change ../${tempdir}/build-aux)
+ ln install-sh missing move-if-change update-subdirs ../${tempdir}/build-aux)
 
 echo "Making links to \`build-aux/snippet'"
 (cd build-aux/snippet
diff --git a/update-subdirs b/update-subdirs
deleted file mode 100755 (executable)
index e20e0da..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
-#!/bin/sh
-# Write into $1/subdirs.el a list of subdirs of directory $1.
-
-# Copyright (C) 1994-1995, 1997, 1999, 2001-2012
-#   Free Software Foundation, Inc.
-
-# This file is part of GNU Emacs.
-
-# GNU Emacs is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-
-# GNU Emacs is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-
-# You should have received a copy of the GNU General Public License
-# along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
-
-
-cd $1
-for file in *; do
-    case $file in
-       *.elc | *.el | term | RCS | CVS | Old | . | .. | =* | *~ | *.orig | *.rej)
-         ;;
-       *)
-           if [ -d $file ]; then
-               if [ "$file" = "obsolete" ]; then
-                   subdirs="$subdirs \"$file\""
-               else
-                   subdirs="\"$file\" $subdirs"
-               fi
-           fi
-           ;;
-    esac
-done
-
-if [ "x$subdirs" = x ]; then
-  rm -f subdirs.el
-else
-  rm -f subdirs.el~
-  echo ";; In load-path, after this directory should come
-;; certain of its subdirectories.  Here we specify them.
-(normal-top-level-add-to-load-path '($subdirs))
-;; Local" "Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; End:" > subdirs.el~
-  if cmp "subdirs.el" "subdirs.el~" >/dev/null 2>&1; then
-    :; # echo "subdirs.el unchanged";
-  else
-  mv subdirs.el~ subdirs.el
-  fi
-fi