Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/conf Assign DTB files to a variable so we can make -V DTB



details:   https://anonhg.NetBSD.org/src/rev/0a50f99655f2
branches:  trunk
changeset: 824770:0a50f99655f2
user:      christos <christos%NetBSD.org@localhost>
date:      Sat Jun 17 17:08:49 2017 +0000

description:
Assign DTB files to a variable so we can make -V DTB

diffstat:

 sys/conf/Makefile.kern.inc |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (19 lines):

diff -r b0fd25751259 -r 0a50f99655f2 sys/conf/Makefile.kern.inc
--- a/sys/conf/Makefile.kern.inc        Sat Jun 17 17:03:40 2017 +0000
+++ b/sys/conf/Makefile.kern.inc        Sat Jun 17 17:08:49 2017 +0000
@@ -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 @@
 
 .PATH.dts: ${DTSPATH}
 
-all: ${DTS:.dts=.dtb}
+DTB= ${DTS:.dts=.dtb}
+all: ${DTB}
 
 # End DTS handling
 



Home | Main Index | Thread Index | Old Index