svn commit: r359417 - in head: contrib/kyua/doc usr.bin/kyua

Enji Cooper ngie at FreeBSD.org
Sun Mar 29 02:40:14 UTC 2020


Author: ngie
Date: Sun Mar 29 02:40:03 2020
New Revision: 359417
URL: https://svnweb.freebsd.org/changeset/base/359417

Log:
  Revert r359385-r359387
  
  As noted by brooks/emaste, this is the wrong approach to take.
  Revert the changes so brooks can apply a more proper change.
  
  Requested by:	brooks, emaste

Deleted:
  head/contrib/kyua/doc/kyua-about.1
  head/contrib/kyua/doc/kyua-config.1
  head/contrib/kyua/doc/kyua-db-exec.1
  head/contrib/kyua/doc/kyua-db-migrate.1
  head/contrib/kyua/doc/kyua-debug.1
  head/contrib/kyua/doc/kyua-help.1
  head/contrib/kyua/doc/kyua-list.1
  head/contrib/kyua/doc/kyua-report-html.1
  head/contrib/kyua/doc/kyua-report-junit.1
  head/contrib/kyua/doc/kyua-report.1
  head/contrib/kyua/doc/kyua-test.1
  head/contrib/kyua/doc/kyua.1
  head/contrib/kyua/doc/kyua.conf.5
  head/contrib/kyua/doc/kyuafile.5
Modified:
  head/usr.bin/kyua/Makefile

Modified: head/usr.bin/kyua/Makefile
==============================================================================
--- head/usr.bin/kyua/Makefile	Sun Mar 29 02:30:23 2020	(r359416)
+++ head/usr.bin/kyua/Makefile	Sun Mar 29 02:40:03 2020	(r359417)
@@ -48,6 +48,20 @@ STORE=		migrate_v1_v2.sql migrate_v2_v3.sql schema_v3.
 STOREDIR=	${KYUA_STOREDIR}
 .PATH:		${KYUA_SRCDIR}/store
 
+CLEANFILES+=	${MAN}
 .PATH: ${KYUA_SRCDIR}/doc
+.for man in ${MAN}
+${man}: ${man}.in
+	${SH} ${KYUA_SRCDIR}/doc/manbuild.sh \
+	    -v "CONFDIR=${KYUA_CONFDIR}" \
+	    -v "DOCDIR=${KYUA_DOCDIR}" \
+	    -v "EGDIR=${KYUA_EGDIR}" \
+	    -v "MISCDIR=${KYUA_MISCDIR}" \
+	    -v "PACKAGE=kyua" \
+	    -v "STOREDIR=${KYUA_STOREDIR}" \
+	    -v "TESTSDIR=${TESTSBASE}" \
+	    -v "VERSION=${KYUA_VERSION}" \
+	    ${.ALLSRC} ${.TARGET}
+.endfor
 
 .include <bsd.prog.mk>


More information about the svn-src-all mailing list