Module Name: src
Committed By: riastradh
Date: Thu Dec 5 03:57:55 UTC 2019
Modified Files:
src/sys/rump/kern/lib/libcrypto: Makefile
Log Message:
Missed a spot in the crypto/arc4 deletion.
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 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.5 src/sys/rump/kern/lib/libcrypto/Makefile:1.6
--- src/sys/rump/kern/lib/libcrypto/Makefile:1.5 Mon Sep 2 20:09:30 2019
+++ src/sys/rump/kern/lib/libcrypto/Makefile Thu Dec 5 03:57:55 2019
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.5 2019/09/02 20:09:30 riastradh Exp $
+# $NetBSD: Makefile,v 1.6 2019/12/05 03:57:55 riastradh Exp $
#
-.PATH: ${.CURDIR}/../../../../crypto/arc4 \
- ${.CURDIR}/../../../../crypto/blowfish \
+.PATH: ${.CURDIR}/../../../../crypto/blowfish \
${.CURDIR}/../../../../crypto/camellia \
${.CURDIR}/../../../../crypto/cast128 \
${.CURDIR}/../../../../crypto/des \
@@ -12,9 +11,6 @@
LIB= rumpkern_crypto
COMMENT=Cryptographic routines
-# arc4
-SRCS+= arc4.c
-
# blowfish
SRCS+= bf_ecb.c bf_enc.c bf_cbc.c bf_skey.c bf_module.c