Module Name: src
Committed By: riastradh
Date: Thu Aug 20 21:33:43 UTC 2020
Modified Files:
src/sys/rump/kern/lib/libcrypto: Makefile
Log Message:
Missed a spot -- add sys/crypto/blake2 to .PATH here.
To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/sys/rump/kern/lib/libcrypto/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/rump/kern/lib/libcrypto/Makefile
diff -u src/sys/rump/kern/lib/libcrypto/Makefile:1.15 src/sys/rump/kern/lib/libcrypto/Makefile:1.16
--- src/sys/rump/kern/lib/libcrypto/Makefile:1.15 Thu Aug 20 21:30:32 2020
+++ src/sys/rump/kern/lib/libcrypto/Makefile Thu Aug 20 21:33:43 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.15 2020/08/20 21:30:32 riastradh Exp $
+# $NetBSD: Makefile,v 1.16 2020/08/20 21:33:43 riastradh Exp $
#
SODIUM_IMPORTDIR=${.CURDIR}/../../../../external/isc/libsodium
@@ -6,6 +6,7 @@ SODIUM_DIR=${.CURDIR}/../../../../extern
.PATH: ${.CURDIR}/../../../../crypto/adiantum \
${.CURDIR}/../../../../crypto/aes \
+ ${.CURDIR}/../../../../crypto/blake2 \
${.CURDIR}/../../../../crypto/blowfish \
${.CURDIR}/../../../../crypto/camellia \
${.CURDIR}/../../../../crypto/cast128 \