svn commit: r285295 - head/share/mk

Baptiste Daroussin bapt at FreeBSD.org
Wed Jul 8 22:24:56 UTC 2015


Author: bapt
Date: Wed Jul  8 22:24:55 2015
New Revision: 285295
URL: https://svnweb.freebsd.org/changeset/base/285295

Log:
  Fix typo which breaks build of manpages when WITHOUT_MANCOMPRESS is set
  
  PR:		201153
  Reported by:	Andriy Voskoboinyk <s3erios at gmail.com>

Modified:
  head/share/mk/bsd.man.mk

Modified: head/share/mk/bsd.man.mk
==============================================================================
--- head/share/mk/bsd.man.mk	Wed Jul  8 22:21:25 2015	(r285294)
+++ head/share/mk/bsd.man.mk	Wed Jul  8 22:24:55 2015	(r285295)
@@ -186,7 +186,7 @@ _maninstall: ${MAN}
 .endif
 .endfor
 .else
-.for _page _sect ${.ALLSRC:C/\.([^.]*)$/.\1 \1/}
+.for _page _sect in ${.ALLSRC:C/\.([^.]*)$/.\1 \1/}
 	@d=${DESTDIR}${MANDIR}${_sect}${MANSUBDIR}; \
 	${ECHO} ${MINSTALL} ${_page} $${d}; \
 	${MINSTALL} $${page} $${d};


More information about the svn-src-head mailing list