comparison admin/quick-install-emacs @ 52634:bb955cc088f9

Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-62 Tweaks to admin/quick-install-emacs * quick-install-emacs: Remove fns-* pruning, since that file no longer seems to be generated. (AVOID): Quote literal periods. Quote braces in a way acceptable to all parties (gawk gets bitchy about using `\').
author Miles Bader <miles@gnu.org>
date Sat, 27 Sep 2003 23:08:14 +0000
parents 9e0c7158faae
children 8f70aecafdb5
comparison
equal deleted inserted replaced
52633:2d5bfd1be536 52634:bb955cc088f9
6 # install emacs very often. See the --help output for more details. 6 # install emacs very often. See the --help output for more details.
7 7
8 PUBLIC_LIBSRC_BINARIES='b2m emacsclient etags ctags ebrowse' 8 PUBLIC_LIBSRC_BINARIES='b2m emacsclient etags ctags ebrowse'
9 PUBLIC_LIBSRC_SCRIPTS='grep-changelog rcs-checkin' 9 PUBLIC_LIBSRC_SCRIPTS='grep-changelog rcs-checkin'
10 10
11 AVOID="CVS -DIC README COPYING ChangeLog ~ [.]orig$ [.]rej$ Makefile makefile stamp-subdir .cvsignore .arch-ids \{arch\} [.][cho]$ make-docfile testfile test-distrib" 11 AVOID="CVS -DIC README COPYING ChangeLog ~ [.]orig$ [.]rej$ Makefile makefile stamp-subdir [.]cvsignore [.]arch-ids [{]arch[}] [.][cho]$ make-docfile testfile test-distrib"
12 12
13 # Prune old binaries lying around in the source tree 13 # Prune old binaries lying around in the source tree
14 PRUNE=no 14 PRUNE=no
15 # Re-install files even if they already exist 15 # Re-install files even if they already exist
16 FORCE=no 16 FORCE=no
172 for D in `ls -1t $BUILD/etc/DOC-* | sed 1d`; do 172 for D in `ls -1t $BUILD/etc/DOC-* | sed 1d`; do
173 echo $REMOVE_CMD $D 173 echo $REMOVE_CMD $D
174 PRUNED="$PRUNED $D" 174 PRUNED="$PRUNED $D"
175 done 175 done
176 for D in `ls -1t $BUILD/src/emacs-$VERSION.* | sed 1d`; do 176 for D in `ls -1t $BUILD/src/emacs-$VERSION.* | sed 1d`; do
177 echo $REMOVE_CMD $D
178 PRUNED="$PRUNED $D"
179 done
180 for D in `ls -1t $BUILD/lib-src/fns-* | sed 1d`; do
181 echo $REMOVE_CMD $D 177 echo $REMOVE_CMD $D
182 PRUNED="$PRUNED $D" 178 PRUNED="$PRUNED $D"
183 done 179 done
184 fi 180 fi
185 181