Source-Changes-HG archive

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

[src/trunk]: src/sys/modules Fix broken name



details:   https://anonhg.NetBSD.org/src/rev/9dfe8f040aed
branches:  trunk
changeset: 985303:9dfe8f040aed
user:      christos <christos%NetBSD.org@localhost>
date:      Wed Aug 18 09:07:07 2021 +0000

description:
Fix broken name

diffstat:

 sys/modules/Makefile          |   4 ++--
 sys/modules/blake2s/Makefile  |  13 +++++++++++++
 sys/modules/blakes2s/Makefile |  13 -------------
 3 files changed, 15 insertions(+), 15 deletions(-)

diffs (52 lines):

diff -r 36fad1648e8f -r 9dfe8f040aed sys/modules/Makefile
--- a/sys/modules/Makefile      Tue Aug 17 22:29:11 2021 +0000
+++ b/sys/modules/Makefile      Wed Aug 18 09:07:07 2021 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.253 2021/08/17 21:39:32 kre Exp $
+#      $NetBSD: Makefile,v 1.254 2021/08/18 09:07:07 christos Exp $
 
 .include <bsd.own.mk>
 
@@ -27,7 +27,7 @@
 SUBDIR+=       aio
 SUBDIR+=       audio
 SUBDIR+=       autofs
-SUBDIR+=       blakes2s
+SUBDIR+=       blake2s
 SUBDIR+=       blowfish
 SUBDIR+=       bpf
 SUBDIR+=       bpf_filter
diff -r 36fad1648e8f -r 9dfe8f040aed sys/modules/blake2s/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/modules/blake2s/Makefile      Wed Aug 18 09:07:07 2021 +0000
@@ -0,0 +1,13 @@
+#      $NetBSD: Makefile,v 1.1 2021/08/18 09:07:07 christos Exp $
+
+.include "../Makefile.inc"
+
+KMOD=  blake2s
+
+BLAKE2SDIR=    $S/crypto/blake2
+CPPFLAGS+=     -I${BLAKE2SDIR}
+
+.PATH: ${BLAKE2SDIR}
+SRCS+= blake2s.c
+
+.include <bsd.kmodule.mk>
diff -r 36fad1648e8f -r 9dfe8f040aed sys/modules/blakes2s/Makefile
--- a/sys/modules/blakes2s/Makefile     Tue Aug 17 22:29:11 2021 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-#      $NetBSD: Makefile,v 1.1 2021/08/17 17:29:20 christos Exp $
-
-.include "../Makefile.inc"
-
-KMOD=  blake2s
-
-BLAKE2SDIR=    $S/crypto/blake2
-CPPFLAGS+=     -I${BLAKE2SDIR}
-
-.PATH: ${BLAKE2SDIR}
-SRCS+= blake2s.c
-
-.include <bsd.kmodule.mk>



Home | Main Index | Thread Index | Old Index