1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-09-20 19:05:11 +02:00

43404 (after 43392): Fix 'make install' in out-of-tree builds

This commit is contained in:
Daniel Shahaf 2018-09-07 00:06:47 +00:00
parent 85ae84e895
commit b2ddd97175
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2018-09-07 Daniel Shahaf <d.s@daniel.shahaf.name>
* 43404 (after 43392): Doc/Makefile.in: Fix 'make install'
in out-of-tree builds
2018-09-06 Daniel Shahaf <d.s@daniel.shahaf.name>
* 43392: Doc/Makefile.in, Etc/creating-a-release.txt: dist:

View File

@ -337,11 +337,11 @@ install.man: man
install.runhelp: $(runhelp)
if test x"$(runhelpdir)" != x""; then \
${SHELL} $(sdir_top)/mkinstalldirs $(DESTDIR)$(runhelpdir); \
$(INSTALL_DATA) $(sdir)/help/* $(DESTDIR)$(runhelpdir); \
$(INSTALL_DATA) help/* $(DESTDIR)$(runhelpdir); \
while read from to; do \
rm -f $(DESTDIR)$(runhelpdir)/$$to || : ; \
$(LN_S) $$from $(DESTDIR)$(runhelpdir)/$$to; \
done < $(sdir)/help.txt; \
done < help.txt; \
fi
.PHONY: install.runhelp
@ -418,7 +418,7 @@ distclean-here: clean-here
realclean-here: distclean-here
cd $(sdir) && rm -f Zsh/modlist.yo Zsh/modmenu.yo Zsh/manmodmenu.yo
cd $(sdir) && rm -f version.yo ../META-FAQ zsh.texi $(MAN)
cd $(sdir) && rm -f help.txt help/*
rm -f help.txt help/*
.PHONY: realclean-here
@CLEAN_MK@