Source-Changes-HG archive

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

[src/trunk]: src/sys/dtb update-sets:



details:   https://anonhg.NetBSD.org/src/rev/12ec3c883698
branches:  trunk
changeset: 1010316:12ec3c883698
user:      rin <rin%NetBSD.org@localhost>
date:      Fri May 22 23:57:13 2020 +0000

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

diffstat:

 sys/dtb/Makefile |  11 ++++++++---
 1 files changed, 8 insertions(+), 3 deletions(-)

diffs (23 lines):

diff -r f404a41680d7 -r 12ec3c883698 sys/dtb/Makefile
--- a/sys/dtb/Makefile  Fri May 22 23:19:53 2020 +0000
+++ b/sys/dtb/Makefile  Fri May 22 23:57:13 2020 +0000
@@ -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 @@
 
 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



Home | Main Index | Thread Index | Old Index