svn commit: r334228 - head/lib/libpmcstat

Bryan Drewery bdrewery at FreeBSD.org
Fri May 25 21:46:57 UTC 2018


Author: bdrewery
Date: Fri May 25 21:46:53 2018
New Revision: 334228
URL: https://svnweb.freebsd.org/changeset/base/334228

Log:
  META_MODE: Fix trying to rebuild jevents due to missing .meta file.
  
  The tool is built separately in buildworld in a subdirectory rather than
  how other build-tools are done.  Subdirectory builds in lib/libpmcstat
  remain broken since the tool cannot be auto-built from here.

Modified:
  head/lib/libpmcstat/Makefile

Modified: head/lib/libpmcstat/Makefile
==============================================================================
--- head/lib/libpmcstat/Makefile	Fri May 25 21:46:49 2018	(r334227)
+++ head/lib/libpmcstat/Makefile	Fri May 25 21:46:53 2018	(r334228)
@@ -26,6 +26,9 @@ EVENT_ARCH="powerpc"
 .endif
 
 JEVENTS= ${BTOOLSPATH:U.}/pmu-events/jevents
+# This file is built in a subdirectory so never try to rebuild
+# it here due to missing meta file.
+${JEVENTS}: .NOMETA
 
 libpmcstat_events.c: ${JEVENTS}
 	${JEVENTS} ${EVENT_ARCH} ${.CURDIR}/pmu-events/arch libpmcstat_events.c


More information about the svn-src-head mailing list