Module Name:    src
Committed By:   rin
Date:           Fri May 22 23:57:13 UTC 2020

Modified Files:
        src/sys/dtb: Makefile

Log Message:
update-sets:
- sort entries
- add NetBSD RCSID
- add "DO NOT EDIT" comment


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/dtb/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dtb/Makefile
diff -u src/sys/dtb/Makefile:1.1 src/sys/dtb/Makefile:1.2
--- src/sys/dtb/Makefile:1.1	Mon May 18 21:19:35 2020
+++ src/sys/dtb/Makefile	Fri May 22 23:57:13 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.1 2020/05/18 21:19:35 jmcneill Exp $
+#	$NetBSD: Makefile,v 1.2 2020/05/22 23:57:13 rin Exp $
 
 TARGETS+=	dtblist
 
@@ -23,6 +23,11 @@ TARGET_ARCH_LIST+=	aarch64 aarch64eb
 
 update-sets:
 .for _arch in ${TARGET_ARCH_LIST}
-	${MAKE} MACHINE_ARCH=${_arch} dtblist | grep '^[\.#]' | \
-	     column -t >${.CURDIR}/../../distrib/sets/lists/dtb/ad.${_arch}
+	(echo '# $$NetBSD: Makefile,v 1.2 2020/05/22 23:57:13 rin Exp $$'; \
+	 echo '#'; \
+	 echo '# DO NOT EDIT THIS FILE MANUALLY'; \
+	 echo '# Generated by "make update-sets" in sys/dtb'; \
+	 echo '#'; \
+	 ${MAKE} MACHINE_ARCH=${_arch} dtblist | grep '^[\.#]' | column -t | \
+	    sort) > ${.CURDIR}/../../distrib/sets/lists/dtb/ad.${_arch}
 .endfor

Reply via email to