Module Name: src Committed By: christos Date: Mon Jun 19 20:10:18 UTC 2017
Modified Files: src/etc: Makefile Log Message: use -v to get the expanded variable. To generate a diff of this commit: cvs rdiff -u -r1.430 -r1.431 src/etc/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/etc/Makefile diff -u src/etc/Makefile:1.430 src/etc/Makefile:1.431 --- src/etc/Makefile:1.430 Sat Jun 17 22:43:43 2017 +++ src/etc/Makefile Mon Jun 19 16:10:18 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.430 2017/06/18 02:43:43 christos Exp $ +# $NetBSD: Makefile,v 1.431 2017/06/19 20:10:18 christos Exp $ # from: @(#)Makefile 8.7 (Berkeley) 5/25/95 # Environment variables without default values: @@ -625,7 +625,7 @@ kernset-${configfile}: .PHONY build_kern echo "echo $${kernels} | $${pax_cmd}"; \ ( echo "/set uname=${BINOWN} gname=${BINGRP}"; \ echo ". type=dir optional"; \ - dtblist=$$(${MAKE} -V DTB); \ + dtblist=$$(${MAKE} -v DTB); \ for dtb in $${dtblist}; do \ echo "./$${dtb} type=file"; \ done; \ @@ -652,7 +652,7 @@ releasekern-${configfile}: .PHONY build_ kernsuffixes="${KERNEL_SUFFIXES:S/^/./}"; \ dest="${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/kernel"; \ cd $${kerndir} && { \ - dtblist=$$(${MAKE} -V DTB); \ + dtblist=$$(${MAKE} -v DTB); \ for dtb in $${dtblist}; do \ [ ! -f $${dtb} ] && continue; \ dtb_gz="$${dest}/$${dtb}.gz"; \