aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in10
1 files changed, 4 insertions, 6 deletions
diff --git a/Makefile.in b/Makefile.in
index 844d92d228c..0a62875c977 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -229,7 +229,7 @@ gamedir=@gamedir@
229# Note that if the system does not provide a suitable install, 229# Note that if the system does not provide a suitable install,
230# configure will use build-aux/install-sh. Annoyingly, it does 230# configure will use build-aux/install-sh. Annoyingly, it does
231# not use an absolute path. So we must take care to always run 231# not use an absolute path. So we must take care to always run
232# INSTALL-type commands from the top-level directory. 232# INSTALL-type commands from the directory containing the Makefile.
233# This explains (I think) the cd thisdir seen in several install rules. 233# This explains (I think) the cd thisdir seen in several install rules.
234INSTALL = @INSTALL@ 234INSTALL = @INSTALL@
235INSTALL_PROGRAM = @INSTALL_PROGRAM@ 235INSTALL_PROGRAM = @INSTALL_PROGRAM@
@@ -237,6 +237,7 @@ INSTALL_DATA = @INSTALL_DATA@
237INSTALL_INFO = @INSTALL_INFO@ 237INSTALL_INFO = @INSTALL_INFO@
238# By default, we uphold the dignity of our programs. 238# By default, we uphold the dignity of our programs.
239INSTALL_STRIP = 239INSTALL_STRIP =
240MKDIR_P = @MKDIR_P@
240 241
241# We use gzip to compress installed .el files. 242# We use gzip to compress installed .el files.
242GZIP_PROG = @GZIP_PROG@ 243GZIP_PROG = @GZIP_PROG@
@@ -659,10 +660,7 @@ install-leim: leim/Makefile mkdir
659install-strip: 660install-strip:
660 $(MAKE) $(MFLAGS) INSTALL_STRIP=-s install 661 $(MAKE) $(MFLAGS) INSTALL_STRIP=-s install
661 662
662### Build all the directories we're going to install Emacs in. Since 663### Build all the directories we're going to install Emacs in.
663### we may be creating several layers of directories (for example,
664### /usr/local/lib/emacs/19.0/mips-dec-ultrix4.2), we use install-sh -d
665### instead of mkdir. Not all systems' mkdir programs have the `-p' flag.
666### We set the umask so that any created directories are world-readable. 664### We set the umask so that any created directories are world-readable.
667### FIXME it would be good to warn about non-standard permissions of 665### FIXME it would be good to warn about non-standard permissions of
668### pre-existing directories, but that does not seem easy. 666### pre-existing directories, but that does not seem easy.
@@ -675,7 +673,7 @@ mkdir: FRC
675 done ; \ 673 done ; \
676 icondirs=`echo "$${icondirs}" | sed 's,$(srcdir)/etc/images/icons,$(DESTDIR)${icondir},g'` ; \ 674 icondirs=`echo "$${icondirs}" | sed 's,$(srcdir)/etc/images/icons,$(DESTDIR)${icondir},g'` ; \
677 umask 022 ; \ 675 umask 022 ; \
678 $(srcdir)/build-aux/install-sh -d $(DESTDIR)${datadir} ${COPYDESTS} \ 676 $(MKDIR_P) $(DESTDIR)${datadir} ${COPYDESTS} \
679 $(DESTDIR)${infodir} $(DESTDIR)${man1dir} \ 677 $(DESTDIR)${infodir} $(DESTDIR)${man1dir} \
680 $(DESTDIR)${bindir} $(DESTDIR)${docdir} $(DESTDIR)${libexecdir} \ 678 $(DESTDIR)${bindir} $(DESTDIR)${docdir} $(DESTDIR)${libexecdir} \
681 $(DESTDIR)${datadir}/emacs/site-lisp \ 679 $(DESTDIR)${datadir}/emacs/site-lisp \