Module Name: src
Committed By: christos
Date: Sat Jun 17 17:08:49 UTC 2017
Modified Files:
src/sys/conf: Makefile.kern.inc
Log Message:
Assign DTB files to a variable so we can make -V DTB
To generate a diff of this commit:
cvs rdiff -u -r1.257 -r1.258 src/sys/conf/Makefile.kern.inc
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/conf/Makefile.kern.inc
diff -u src/sys/conf/Makefile.kern.inc:1.257 src/sys/conf/Makefile.kern.inc:1.258
--- src/sys/conf/Makefile.kern.inc:1.257 Thu Jun 15 17:41:01 2017
+++ src/sys/conf/Makefile.kern.inc Sat Jun 17 13:08:49 2017
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.kern.inc,v 1.257 2017/06/15 21:41:01 jmcneill Exp $
+# $NetBSD: Makefile.kern.inc,v 1.258 2017/06/17 17:08:49 christos Exp $
#
# This file contains common `MI' targets and definitions and it is included
# at the bottom of each `MD' ${MACHINE}/conf/Makefile.${MACHINE}.
@@ -549,7 +549,8 @@ DTSPADDING?=1024
.PATH.dts: ${DTSPATH}
-all: ${DTS:.dts=.dtb}
+DTB= ${DTS:.dts=.dtb}
+all: ${DTB}
# End DTS handling