diff options
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/ChangeLog | 11 | ||||
| -rwxr-xr-x | admin/quick-install-emacs | 4 |
2 files changed, 13 insertions, 2 deletions
diff --git a/admin/ChangeLog b/admin/ChangeLog index da7ef59e8e6..90ba61f7850 100644 --- a/admin/ChangeLog +++ b/admin/ChangeLog | |||
| @@ -1,3 +1,14 @@ | |||
| 1 | 2010-03-10 Chong Yidong <cyd@stupidchicken.com> | ||
| 2 | |||
| 3 | * Branch for 23.2. | ||
| 4 | |||
| 5 | 2010-03-10 Miles Bader <miles@gnu.org> | ||
| 6 | |||
| 7 | * quick-install-emacs: Use more portable shell syntax. | ||
| 8 | |||
| 9 | * quick-install-emacs: (AVOID): Be more picky about files we avoid | ||
| 10 | installing. | ||
| 11 | |||
| 1 | 2010-02-14 Juanma Barranquero <lekktu@gmail.com> | 12 | 2010-02-14 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 13 | ||
| 3 | * quick-install-emacs (PRUNED): Fix typo in message. | 14 | * quick-install-emacs (PRUNED): Fix typo in message. |
diff --git a/admin/quick-install-emacs b/admin/quick-install-emacs index 2fda74b0832..b912ed4e3ff 100755 --- a/admin/quick-install-emacs +++ b/admin/quick-install-emacs | |||
| @@ -31,7 +31,7 @@ | |||
| 31 | PUBLIC_LIBSRC_BINARIES='b2m emacsclient etags ctags ebrowse' | 31 | PUBLIC_LIBSRC_BINARIES='b2m emacsclient etags ctags ebrowse' |
| 32 | PUBLIC_LIBSRC_SCRIPTS='grep-changelog rcs-checkin' | 32 | PUBLIC_LIBSRC_SCRIPTS='grep-changelog rcs-checkin' |
| 33 | 33 | ||
| 34 | AVOID="CVS -DIC README COPYING ChangeLog ~ [.]orig$ [.]rej$ Makefile makefile stamp-subdir [.]cvsignore [.]arch-ids [{]arch[}] [.][cho]$ make-docfile testfile test-distrib" | 34 | AVOID="CVS -DIC README COPYING ChangeLog ~ [.]orig$ [.]rej$ Makefile$ Makefile.in$ Makefile.c$ makefile$ makefile.w32-in$ stamp-subdir [.]cvsignore [.]arch-ids [{]arch[}] [.][cho]$ make-docfile testfile test-distrib" |
| 35 | 35 | ||
| 36 | # Prune old binaries lying around in the source tree | 36 | # Prune old binaries lying around in the source tree |
| 37 | PRUNE=no | 37 | PRUNE=no |
| @@ -120,7 +120,7 @@ Written by Miles Bader <miles@gnu.org> | |||
| 120 | EOF | 120 | EOF |
| 121 | exit 0 | 121 | exit 0 |
| 122 | ;; | 122 | ;; |
| 123 | -[^-]?*) | 123 | -[!-]?*) |
| 124 | # split concatenated single-letter options apart | 124 | # split concatenated single-letter options apart |
| 125 | FIRST="$1"; shift | 125 | FIRST="$1"; shift |
| 126 | set -- `echo $FIRST | sed 's/-\(.\)\(.*\)/-\1 -\2/'` "$@" | 126 | set -- `echo $FIRST | sed 's/-\(.\)\(.*\)/-\1 -\2/'` "$@" |