diff options
author | Glenn Morris <rgm@gnu.org> | 2014-12-13 18:38:21 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2014-12-13 18:38:21 -0800 |
commit | 49daed60510a073062b41fa39fd7c010cb0a315e (patch) | |
tree | c254bf6f56ac9eec9f6d910aa934cfe5305f0a8a /admin/quick-install-emacs | |
parent | 4d806dc01d4ffdecadfe75e92f4f190952f5447c (diff) | |
download | emacs-49daed60510a073062b41fa39fd7c010cb0a315e.tar.gz |
Remove lib-src/grep-changelog
Ref: http://lists.gnu.org/archive/html/emacs-devel/2014-12/msg00145.html
* lib-src/grep-changelog: Remove file.
* lib-src/Makefile.in (INSTALLABLE_SCRIPTS): Remove.
(all, install, uninstall): Remove INSTALLABLE_SCRIPTS.
* doc/man/grep-changelog.1: Remove file.
* make-dist: No more lib-src/grep-changelog.
* INSTALL: No longer mention grep-changelog.
* admin/quick-install-emacs (PUBLIC_LIBSRC_SCRIPTS): Remove, and all uses.
* admin/authors.el (authors-valid-file-names): Add grep-changelog.
* etc/NEWS: Mention this.
Diffstat (limited to 'admin/quick-install-emacs')
-rwxr-xr-x | admin/quick-install-emacs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/admin/quick-install-emacs b/admin/quick-install-emacs index 5edc8d4d9ad..58fc5f080fe 100755 --- a/admin/quick-install-emacs +++ b/admin/quick-install-emacs @@ -28,7 +28,6 @@ PUBLIC_LIBSRC_BINARIES='emacsclient etags ctags ebrowse' -PUBLIC_LIBSRC_SCRIPTS='grep-changelog' AVOID="CVS -DIC README COPYING ChangeLog ~ [.]orig$ [.]rej$ Makefile$ Makefile.in$ makefile$ makefile.w32-in$ stamp-subdir [.]cvsignore [.]arch-ids [{]arch[}] [.][cho]$ make-docfile" @@ -230,9 +229,6 @@ maybe_emit_copy $BUILD/src/emacs $DST_BIN/emacs-$VERSION for F in $PUBLIC_LIBSRC_BINARIES; do maybe_emit_copy $BUILD/lib-src/$F $DST_BIN/$F done -for F in $PUBLIC_LIBSRC_SCRIPTS; do - maybe_emit_copy $SRC/lib-src/$F $DST_BIN/$F -done if test x"$SRC" = x"$BUILD"; then PFXS="$BUILD" @@ -259,7 +255,7 @@ for SUBDIR in lisp leim etc lib-src info; do ;; lib-src) DST="$DST_LIBEXEC" - AVOID_PAT="`echo "($AVOID ($PUBLIC_LIBSRC_BINARIES $PUBLIC_LIBSRC_SCRIPTS)\$)" | tr ' ' '|'`" + AVOID_PAT="`echo "($AVOID ($PUBLIC_LIBSRC_BINARIES)\$)" | tr ' ' '|'`" ;; info) DST="$DST_INFO" |