aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiles Bader <[email protected]>2003-09-27 23:08:14 +0000
committerMiles Bader <[email protected]>2003-09-27 23:08:14 +0000
commite04e1ce238b1b588a23a7943eccda2f5bdb9aae1 (patch)
tree3f15c4c291cf42471f9b6addf68aa0c1783887fa
parent2d0f37d68c0824f4cec8a2e75313b234705e3260 (diff)
Revision: [email protected]/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 `\').
-rw-r--r--admin/ChangeLog7
-rwxr-xr-xadmin/quick-install-emacs6
2 files changed, 8 insertions, 5 deletions
diff --git a/admin/ChangeLog b/admin/ChangeLog
index 47035f2748..b3bd3d1552 100644
--- a/admin/ChangeLog
+++ b/admin/ChangeLog
@@ -1,3 +1,10 @@
+2003-09-27 Miles Bader <[email protected]>
+
+ * 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 `\').
+
2003-08-19 Miles Bader <[email protected]>
* quick-install-emacs: Add arch-specific ignored files to
diff --git a/admin/quick-install-emacs b/admin/quick-install-emacs
index 9415bab3d1..19148a392f 100755
--- a/admin/quick-install-emacs
+++ b/admin/quick-install-emacs
@@ -8,7 +8,7 @@
PUBLIC_LIBSRC_BINARIES='b2m emacsclient etags ctags ebrowse'
PUBLIC_LIBSRC_SCRIPTS='grep-changelog rcs-checkin'
-AVOID="CVS -DIC README COPYING ChangeLog ~ [.]orig$ [.]rej$ Makefile makefile stamp-subdir .cvsignore .arch-ids \{arch\} [.][cho]$ make-docfile testfile test-distrib"
+AVOID="CVS -DIC README COPYING ChangeLog ~ [.]orig$ [.]rej$ Makefile makefile stamp-subdir [.]cvsignore [.]arch-ids [{]arch[}] [.][cho]$ make-docfile testfile test-distrib"
# Prune old binaries lying around in the source tree
PRUNE=no
@@ -177,10 +177,6 @@ if test x"$PRUNE" != xno; then
echo $REMOVE_CMD $D
PRUNED="$PRUNED $D"
done
- for D in `ls -1t $BUILD/lib-src/fns-* | sed 1d`; do
- echo $REMOVE_CMD $D
- PRUNED="$PRUNED $D"
- done
fi
test x"$PRUNE" = xonly && exit 0