Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 29 Jan 2020 18:54:22 +0000 (UTC)
From:      Kyle Evans <kevans@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r357266 - head/sys/conf
Message-ID:  <202001291854.00TIsMaV001630@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202001291854.00TIsMaV001630>