diff options
| author | Lexi Winter <ivy@FreeBSD.org> | 2025-11-05 21:17:31 +0000 |
|---|---|---|
| committer | Lexi Winter <ivy@FreeBSD.org> | 2025-11-05 21:17:31 +0000 |
| commit | c3b853fe522ead976863af086557be8863327eb0 (patch) | |
| tree | b7d020e74722efd6c215fa596bbc990164d996c5 | |
| parent | 4b342830abd39cdc20b67a215e15309293673e75 (diff) | |
libcrypto: Install tests in the tests package
libcrypto's Makefile.inc used PACKAGE=openssl, which overrides the
PACKAGE=tests in libcrypto/tests/Makefile. Use PACKAGE?=openssl
instead to avoid this. This puts the OpenSSL tests in the tests
package where they belong.
MFC after: 1 day
Reviewed by: manu, ngie
Sponsored by: https://www.patreon.com/bsdivy
Differential Revision: https://reviews.freebsd.org/D53595
| -rw-r--r-- | secure/lib/libcrypto/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/secure/lib/libcrypto/Makefile.inc b/secure/lib/libcrypto/Makefile.inc index 5b281166df61..73c650d590ff 100644 --- a/secure/lib/libcrypto/Makefile.inc +++ b/secure/lib/libcrypto/Makefile.inc @@ -1,6 +1,6 @@ .include <bsd.own.mk> -PACKAGE= openssl +PACKAGE?= openssl LIB_PACKAGE= LCRYPTO_SRC= ${SRCTOP}/crypto/openssl |
