Module Name: src Committed By: rin Date: Tue May 19 08:59:36 UTC 2020
Modified Files: src/share/mk: bsd.dtb.mk Log Message: Fix dtblist; our echo(1) does not interpret \t. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/share/mk/bsd.dtb.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/share/mk/bsd.dtb.mk diff -u src/share/mk/bsd.dtb.mk:1.1 src/share/mk/bsd.dtb.mk:1.2 --- src/share/mk/bsd.dtb.mk:1.1 Mon May 18 21:19:35 2020 +++ src/share/mk/bsd.dtb.mk Tue May 19 08:59:36 2020 @@ -1,4 +1,4 @@ -# $NetBSD: bsd.dtb.mk,v 1.1 2020/05/18 21:19:35 jmcneill Exp $ +# $NetBSD: bsd.dtb.mk,v 1.2 2020/05/19 08:59:36 rin Exp $ .include <bsd.init.mk> .include <bsd.own.mk> @@ -74,10 +74,12 @@ dtbinstall: dtb dtblist: .if defined(DTSSUBDIR) - @echo ".${DTBINSTDIR}\t\tdtb-base-boot\tdtb" + @echo ".${DTBINSTDIR}\t\tdtb-base-boot\tdtb" | \ + ${TOOL_SED} 's/\\t/ /g' .endif .for _dtb in ${DTB} - @echo ".${DTBINSTDIR}/${_dtb}\t\tdtb-base-boot\tdtb" + @echo ".${DTBINSTDIR}/${_dtb}\t\tdtb-base-boot\tdtb" | \ + ${TOOL_SED} 's/\\t/ /g' .endfor clean: .PHONY