diff options
Diffstat (limited to 'Makefile.in')
| -rw-r--r-- | Makefile.in | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/Makefile.in b/Makefile.in index 19267f82121..699589c6920 100644 --- a/Makefile.in +++ b/Makefile.in | |||
| @@ -332,7 +332,8 @@ DOS_gnulib_comp.m4 = gl-comp.m4 | |||
| 332 | # as per $(gnulib_srcdir)/DEPENDENCIES. | 332 | # as per $(gnulib_srcdir)/DEPENDENCIES. |
| 333 | GNULIB_MODULES = \ | 333 | GNULIB_MODULES = \ |
| 334 | crypto/md5 dtoastr filemode getloadavg getopt-gnu \ | 334 | crypto/md5 dtoastr filemode getloadavg getopt-gnu \ |
| 335 | ignore-value intprops lstat mktime readlink strftime symlink sys_stat | 335 | ignore-value intprops lstat mktime readlink \ |
| 336 | socklen stdio strftime symlink sys_stat | ||
| 336 | GNULIB_TOOL_FLAGS = \ | 337 | GNULIB_TOOL_FLAGS = \ |
| 337 | --import --no-changelog --no-vc-files --makefile-name=gnulib.mk | 338 | --import --no-changelog --no-vc-files --makefile-name=gnulib.mk |
| 338 | sync-from-gnulib: $(gnulib_srcdir) | 339 | sync-from-gnulib: $(gnulib_srcdir) |
| @@ -343,13 +344,9 @@ sync-from-gnulib: $(gnulib_srcdir) | |||
| 343 | cd $(srcdir)/m4 && mv gnulib-comp.m4 $(DOS_gnulib_comp.m4) | 344 | cd $(srcdir)/m4 && mv gnulib-comp.m4 $(DOS_gnulib_comp.m4) |
| 344 | cp $(gnulib_srcdir)/build-aux/texinfo.tex $(srcdir)/doc/misc | 345 | cp $(gnulib_srcdir)/build-aux/texinfo.tex $(srcdir)/doc/misc |
| 345 | cp \ | 346 | cp \ |
| 346 | $(gnulib_srcdir)/build-aux/config.sub \ | ||
| 347 | $(gnulib_srcdir)/build-aux/config.guess \ | ||
| 348 | $(gnulib_srcdir)/build-aux/install-sh \ | ||
| 349 | $(gnulib_srcdir)/build-aux/mkinstalldirs \ | ||
| 350 | $(gnulib_srcdir)/build-aux/move-if-change \ | 347 | $(gnulib_srcdir)/build-aux/move-if-change \ |
| 351 | $(srcdir) | 348 | $(srcdir) |
| 352 | cd $(srcdir) && autoreconf -I m4 | 349 | cd $(srcdir) && autoreconf -i -I m4 |
| 353 | .PHONY: sync-from-gnulib | 350 | .PHONY: sync-from-gnulib |
| 354 | 351 | ||
| 355 | # These targets should be "${SUBDIR} without `src'". | 352 | # These targets should be "${SUBDIR} without `src'". |
| @@ -677,7 +674,7 @@ install-strip: | |||
| 677 | 674 | ||
| 678 | ### Build all the directories we're going to install Emacs in. Since | 675 | ### Build all the directories we're going to install Emacs in. Since |
| 679 | ### we may be creating several layers of directories (for example, | 676 | ### we may be creating several layers of directories (for example, |
| 680 | ### /usr/local/lib/emacs/19.0/mips-dec-ultrix4.2), we use mkinstalldirs | 677 | ### /usr/local/lib/emacs/19.0/mips-dec-ultrix4.2), we use install-sh -d |
| 681 | ### instead of mkdir. Not all systems' mkdir programs have the `-p' flag. | 678 | ### instead of mkdir. Not all systems' mkdir programs have the `-p' flag. |
| 682 | ### We set the umask so that any created directories are world-readable. | 679 | ### We set the umask so that any created directories are world-readable. |
| 683 | ### FIXME it would be good to warn about non-standard permissions of | 680 | ### FIXME it would be good to warn about non-standard permissions of |
| @@ -691,7 +688,7 @@ mkdir: FRC | |||
| 691 | done ; \ | 688 | done ; \ |
| 692 | icondirs=`echo "$${icondirs}" | sed 's,$(srcdir)/etc/images/icons,$(DESTDIR)${icondir},g'` ; \ | 689 | icondirs=`echo "$${icondirs}" | sed 's,$(srcdir)/etc/images/icons,$(DESTDIR)${icondir},g'` ; \ |
| 693 | umask 022 ; \ | 690 | umask 022 ; \ |
| 694 | $(srcdir)/mkinstalldirs $(DESTDIR)${datadir} ${COPYDESTS} \ | 691 | $(srcdir)/install-sh -d $(DESTDIR)${datadir} ${COPYDESTS} \ |
| 695 | $(DESTDIR)${infodir} $(DESTDIR)${man1dir} \ | 692 | $(DESTDIR)${infodir} $(DESTDIR)${man1dir} \ |
| 696 | $(DESTDIR)${bindir} $(DESTDIR)${docdir} $(DESTDIR)${libexecdir} \ | 693 | $(DESTDIR)${bindir} $(DESTDIR)${docdir} $(DESTDIR)${libexecdir} \ |
| 697 | $(DESTDIR)${datadir}/emacs/site-lisp \ | 694 | $(DESTDIR)${datadir}/emacs/site-lisp \ |