1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-06-09 08:46:04 +02:00

24876: Jun T.: don't install manual pages if empty

This commit is contained in:
Peter Stephenson 2008-04-26 19:48:26 +00:00
parent c8b6d1a239
commit 607eac6efb
2 changed files with 3 additions and 0 deletions

View File

@ -1,5 +1,7 @@
2008-04-26 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 24876: don't install manual pages if empty.
* 24872: Jun T.: Fix capitalization with combining characters.
* 24869: Marc Chantreux: configure.ac, Src/init.c: make default

View File

@ -278,6 +278,7 @@ uninstall: uninstall.man
install.man: man
${SHELL} $(sdir_top)/mkinstalldirs $(DESTDIR)$(mandir)/man1
for file in $(MAN); do \
test -s $(sdir)/$$file || exit 1; \
$(INSTALL_DATA) $(sdir)/$$file $(DESTDIR)$(mandir)/man1/`echo $$file | sed 's|zsh|$(tzsh)|'` || exit 1; \
done
.PHONY: install.man