diff options
author | David J. MacKenzie <djm@gnu.org> | 1994-10-12 23:29:23 +0000 |
---|---|---|
committer | David J. MacKenzie <djm@gnu.org> | 1994-10-12 23:29:23 +0000 |
commit | 1fad51c3fe3cb602f8b17d4e77aa19fa441ada63 (patch) | |
tree | 533964177b08ae08d7b6d64e5f81338cd589ee6d /Makefile.in | |
parent | 8f8e418ebdd950bc87f27352bdd9ac6e62982df1 (diff) | |
download | emacs-1fad51c3fe3cb602f8b17d4e77aa19fa441ada63.tar.gz |
use mkinstalldirs instead of make-path
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 15f3e529f39..3812aa095ad 100644 --- a/Makefile.in +++ b/Makefile.in @@ -351,10 +351,10 @@ install-arch-indep: mkdir ### Build all the directories we're going to install Emacs in. Since ### we may be creating several layers of directories (for example, -### /usr/local/lib/emacs/19.0/mips-dec-ultrix4.2), we use make-path +### /usr/local/lib/emacs/19.0/mips-dec-ultrix4.2), we use mkinstalldirs ### instead of mkdir. Not all systems' mkdirs have the `-p' flag. mkdir: FRC - ./lib-src/make-path ${COPYDESTS} ${lockdir} ${infodir} ${mandir} \ + $(srcdir)/mkinstalldirs ${COPYDESTS} ${lockdir} ${infodir} ${mandir} \ ${bindir} ${datadir} ${docdir} ${libexecdir} \ `echo ${locallisppath} | sed 's/:/ /g'` -chmod 777 ${lockdir} |