svn commit: r357266 - head/sys/conf

Kyle Evans kevans at FreeBSD.org
Wed Jan 29 18:54:22 UTC 2020


Author: kevans
Date: Wed Jan 29 18:54:21 2020
New Revision: 357266
URL: https://svnweb.freebsd.org/changeset/base/357266

Log:
  mips: unbreak module builds after r357265
  
  Touch opt_global.h to make sure it exists...
  
  Pointy hat:	kevans

Modified:
  head/sys/conf/config.mk

Modified: head/sys/conf/config.mk
==============================================================================
--- head/sys/conf/config.mk	Wed Jan 29 18:50:55 2020	(r357265)
+++ head/sys/conf/config.mk	Wed Jan 29 18:54:21 2020	(r357266)
@@ -9,8 +9,9 @@
 # (or should)
 .if !defined(KERNBUILDDIR)
 opt_global.h:
+	touch ${.TARGET}
 .if ${MACHINE} != "mips"
-	@echo "#define VIMAGE 1" > ${.TARGET}
+	@echo "#define VIMAGE 1" >> ${.TARGET}
 .endif
 opt_bpf.h:
 	echo "#define DEV_BPF 1" > ${.TARGET}


More information about the svn-src-head mailing list