diff options
author | Glenn Morris <rgm@gnu.org> | 2011-03-22 20:09:55 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2011-03-22 20:09:55 -0700 |
commit | 8cc1d5193337bef03f9525f2c017f6e70c4e64b9 (patch) | |
tree | 1ada81caa2a4d322a9ffdf3007ffbb4d0c080935 /doc | |
parent | 8ae17ff2bf7443379745356de33826b306dfefdf (diff) | |
download | emacs-8cc1d5193337bef03f9525f2c017f6e70c4e64b9.tar.gz |
Replace mkinstalldirs with `install-sh -d', as automake recommends.
* Makefile.in (mkdir): Use `install-sh -d' instead of mkinstalldirs.
(sync-from-gnulib): Don't sync mkinstalldirs.
* make-dist: Don't distribute mkinstalldirs.
* leim/Makefile.in (install): Use `install-sh -d' rather than mkinstalldirs.
* lib-src/Makefile.in ($(DESTDIR)${archlibdir}):
Use `install-sh -d' rather than mkinstalldirs.
* configure.in, doc/emacs/Makefile.in: Update comments.
* admin/notes/copyright: Remove mkinstalldirs.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/emacs/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/emacs/Makefile.in b/doc/emacs/Makefile.in index ae142dba6e6..aca17ce817d 100644 --- a/doc/emacs/Makefile.in +++ b/doc/emacs/Makefile.in @@ -111,7 +111,7 @@ EMACSSOURCES= \ ## This seems pointless. The info/ directory exists in both the ## repository and the release tarfiles. We do not use any -## equivalent of mkdir -p/mkinstalldirs, so this is not a general +## equivalent of mkdir -p/install-sh -d, so this is not a general ## solution anyway. The second test -d is for parallel builds. mkinfodir = @test -d ${infodir} || mkdir ${infodir} || test -d ${infodir} |