diff options
| author | Paul Eggert | 2014-04-16 18:35:20 -0700 |
|---|---|---|
| committer | Paul Eggert | 2014-04-16 18:35:20 -0700 |
| commit | eb36672f2bc4cb3eeed3bd802c340ccb8416ad26 (patch) | |
| tree | 1cc231c6787df91adb3c1cb5566390598af83463 /doc/lispintro | |
| parent | 290d7ac277986bd118e594a8100b3f40e4492cb1 (diff) | |
| download | emacs-eb36672f2bc4cb3eeed3bd802c340ccb8416ad26.tar.gz emacs-eb36672f2bc4cb3eeed3bd802c340ccb8416ad26.zip | |
Be consistent about reporting infoclean failures.
* doc/emacs/Makefile.in (infoclean):
* doc/lispintro/Makefile.in (infoclean):
* doc/lispref/Makefile.in (infoclean):
* doc/misc/Makefile.in (infoclean):
Do not fail merely because the info directory does not exist,
but do fail if it exists and can't be cleaned.
Diffstat (limited to 'doc/lispintro')
| -rw-r--r-- | doc/lispintro/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispintro/Makefile.in | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/doc/lispintro/ChangeLog b/doc/lispintro/ChangeLog index 6ca9eb4c93f..a5878fc7568 100644 --- a/doc/lispintro/ChangeLog +++ b/doc/lispintro/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2014-04-17 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | * Makefile.in (infoclean): Be consistent about reporting failures. | ||
| 4 | |||
| 1 | 2014-02-25 Glenn Morris <rgm@gnu.org> | 5 | 2014-02-25 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * emacs-lisp-intro.texi (X11 Colors): Don't use setq with hooks. | 7 | * emacs-lisp-intro.texi (X11 Colors): Don't use setq with hooks. |
diff --git a/doc/lispintro/Makefile.in b/doc/lispintro/Makefile.in index c041cd17e02..c1c6ef71fa2 100644 --- a/doc/lispintro/Makefile.in +++ b/doc/lispintro/Makefile.in | |||
| @@ -116,7 +116,9 @@ distclean: clean | |||
| 116 | rm -f Makefile | 116 | rm -f Makefile |
| 117 | 117 | ||
| 118 | infoclean: | 118 | infoclean: |
| 119 | -cd $(buildinfodir) && rm -f eintr$(INFO_EXT) eintr$(INFO_EXT)-[1-9] | 119 | rm -f \ |
| 120 | $(buildinfodir)/eintr$(INFO_EXT) \ | ||
| 121 | $(buildinfodir)/eintr$(INFO_EXT)-[1-9] | ||
| 120 | 122 | ||
| 121 | maintainer-clean: distclean infoclean | 123 | maintainer-clean: distclean infoclean |
| 122 | 124 | ||