diff options
| author | Glenn Morris | 2014-12-13 18:38:21 -0800 |
|---|---|---|
| committer | Glenn Morris | 2014-12-13 18:38:21 -0800 |
| commit | 49daed60510a073062b41fa39fd7c010cb0a315e (patch) | |
| tree | c254bf6f56ac9eec9f6d910aa934cfe5305f0a8a /lib-src/Makefile.in | |
| parent | 4d806dc01d4ffdecadfe75e92f4f190952f5447c (diff) | |
| download | emacs-49daed60510a073062b41fa39fd7c010cb0a315e.tar.gz emacs-49daed60510a073062b41fa39fd7c010cb0a315e.zip | |
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 'lib-src/Makefile.in')
| -rw-r--r-- | lib-src/Makefile.in | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index 77d3b78096a..cae0898a2c4 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in | |||
| @@ -137,8 +137,6 @@ CLIENTW = @CLIENTW@ | |||
| 137 | INSTALLABLES = etags${EXEEXT} ctags${EXEEXT} emacsclient${EXEEXT} $(CLIENTW) \ | 137 | INSTALLABLES = etags${EXEEXT} ctags${EXEEXT} emacsclient${EXEEXT} $(CLIENTW) \ |
| 138 | ebrowse${EXEEXT} | 138 | ebrowse${EXEEXT} |
| 139 | 139 | ||
| 140 | INSTALLABLE_SCRIPTS = grep-changelog | ||
| 141 | |||
| 142 | # Things that Emacs runs internally, or during the build process, | 140 | # Things that Emacs runs internally, or during the build process, |
| 143 | # which should not be installed in bindir. | 141 | # which should not be installed in bindir. |
| 144 | UTILITIES = profile${EXEEXT} movemail${EXEEXT} hexl${EXEEXT} \ | 142 | UTILITIES = profile${EXEEXT} movemail${EXEEXT} hexl${EXEEXT} \ |
| @@ -215,7 +213,7 @@ CPP_CFLAGS = ${BASE_CFLAGS} ${PROFILING_CFLAGS} ${CPPFLAGS} ${CFLAGS} | |||
| 215 | # Configuration files for .o files to depend on. | 213 | # Configuration files for .o files to depend on. |
| 216 | config_h = ../src/config.h $(srcdir)/../src/conf_post.h | 214 | config_h = ../src/config.h $(srcdir)/../src/conf_post.h |
| 217 | 215 | ||
| 218 | all: ${EXE_FILES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS} | 216 | all: ${EXE_FILES} ${SCRIPTS} |
| 219 | 217 | ||
| 220 | .PHONY: all need-blessmail maybe-blessmail | 218 | .PHONY: all need-blessmail maybe-blessmail |
| 221 | 219 | ||
| @@ -281,17 +279,11 @@ install: $(DESTDIR)${archlibdir} | |||
| 281 | for file in ${INSTALLABLES} ; do \ | 279 | for file in ${INSTALLABLES} ; do \ |
| 282 | $(INSTALL_PROGRAM) $(INSTALL_STRIP) $${file} "$(DESTDIR)${bindir}"/`echo $${file} | sed -e 's/${EXEEXT}$$//' -e '$(TRANSFORM)'`${EXEEXT} ; \ | 280 | $(INSTALL_PROGRAM) $(INSTALL_STRIP) $${file} "$(DESTDIR)${bindir}"/`echo $${file} | sed -e 's/${EXEEXT}$$//' -e '$(TRANSFORM)'`${EXEEXT} ; \ |
| 283 | done | 281 | done |
| 284 | for file in ${INSTALLABLE_SCRIPTS} ; do \ | ||
| 285 | $(INSTALL_SCRIPT) ${srcdir}/$${file} "$(DESTDIR)${bindir}"/`echo $${file} | sed '$(TRANSFORM)'` ; \ | ||
| 286 | done | ||
| 287 | 282 | ||
| 288 | uninstall: | 283 | uninstall: |
| 289 | for file in ${INSTALLABLES}; do \ | 284 | for file in ${INSTALLABLES}; do \ |
| 290 | rm -f "$(DESTDIR)${bindir}"/`echo $${file} | sed -e 's/${EXEEXT}$$//' -e '$(TRANSFORM)'`${EXEEXT} ; \ | 285 | rm -f "$(DESTDIR)${bindir}"/`echo $${file} | sed -e 's/${EXEEXT}$$//' -e '$(TRANSFORM)'`${EXEEXT} ; \ |
| 291 | done | 286 | done |
| 292 | for file in ${INSTALLABLE_SCRIPTS}; do \ | ||
| 293 | rm -f "$(DESTDIR)${bindir}"/`echo $${file} | sed '$(TRANSFORM)'` ; \ | ||
| 294 | done | ||
| 295 | if [ -d "$(DESTDIR)${archlibdir}" ]; then \ | 287 | if [ -d "$(DESTDIR)${archlibdir}" ]; then \ |
| 296 | (cd "$(DESTDIR)${archlibdir}" && rm -f ${UTILITIES} ${SCRIPTS}) \ | 288 | (cd "$(DESTDIR)${archlibdir}" && rm -f ${UTILITIES} ${SCRIPTS}) \ |
| 297 | fi | 289 | fi |