git: 838a3729210a - main - net/samba422: Set TEST_ENV with = instead of +=
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 12 Dec 2025 13:43:53 UTC
The branch main has been updated by 0mp:
URL: https://cgit.FreeBSD.org/ports/commit/?id=838a3729210aa89677e7bdd6537b7eb1130c9eb4
commit 838a3729210aa89677e7bdd6537b7eb1130c9eb4
Author: Mateusz Piotrowski <0mp@FreeBSD.org>
AuthorDate: 2025-12-12 13:42:46 +0000
Commit: Mateusz Piotrowski <0mp@FreeBSD.org>
CommitDate: 2025-12-12 13:42:46 +0000
net/samba422: Set TEST_ENV with = instead of +=
"+=" may suggest that we are appending to the default value of TEST_ENV.
This is not true. Use "=" to be explicit about the intent.
---
net/samba422/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/samba422/Makefile b/net/samba422/Makefile
index 859772cd091d..35329138fecf 100644
--- a/net/samba422/Makefile
+++ b/net/samba422/Makefile
@@ -133,7 +133,7 @@ CONFIGURE_ENV= PTHREAD_LDFLAGS="-lpthread" \
PYTHONHASHSEED=1
MAKE_ENV= PYTHONHASHSEED=1 \
RPCGEN_CPP="${CPP}"
-TEST_ENV+= PYTHON="${PYTHON_CMD}" \
+TEST_ENV= PYTHON="${PYTHON_CMD}" \
SHA1SUM=/sbin/sha1 \
SHA256SUM=${SHA256} \
MD5SUM=${MD5} \