Module Name: src
Committed By: christos
Date: Sun Sep 11 12:46:41 UTC 2022
Modified Files:
src/sys/dtb: Makefile
Log Message:
use sort -u
To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 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.6 src/sys/dtb/Makefile:1.7
--- src/sys/dtb/Makefile:1.6 Sat Sep 10 18:41:12 2022
+++ src/sys/dtb/Makefile Sun Sep 11 08:46:41 2022
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.6 2022/09/10 22:41:12 rillig Exp $
+# $NetBSD: Makefile,v 1.7 2022/09/11 12:46:41 christos Exp $
TARGETS+= dtblist
@@ -34,5 +34,5 @@ update-sets:
echo '# Generated by "make update-sets" in sys/dtb'; \
echo '#'; \
${MAKE} MACHINE_ARCH=${_arch} dtblist | grep '^[\.#]' | column -t | \
- sort | uniq) > ${.CURDIR}/../../distrib/sets/lists/dtb/ad.${_arch}
+ sort -u) > ${.CURDIR}/../../distrib/sets/lists/dtb/ad.${_arch}
.endfor