git: 65b88c24419f - main - Mk/bsd.port.mk: fix OSVERSION for 13.4
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 01 Jan 2025 16:47:32 UTC
The branch main has been updated by rene:
URL: https://cgit.FreeBSD.org/ports/commit/?id=65b88c24419fb9b0231aa51d075430e518138303
commit 65b88c24419fb9b0231aa51d075430e518138303
Author: Rene Ladan <rene@FreeBSD.org>
AuthorDate: 2025-01-01 16:44:46 +0000
Commit: Rene Ladan <rene@FreeBSD.org>
CommitDate: 2025-01-01 16:47:09 +0000
Mk/bsd.port.mk: fix OSVERSION for 13.4
Reported by: bofh
Approved by: portmgr (implicit)
Fixes: 8777dde2465 "all: remove support for expired FreeBSD 13.3"
---
Mk/bsd.port.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk
index 7697a9ca067e..74b883d4a445 100644
--- a/Mk/bsd.port.mk
+++ b/Mk/bsd.port.mk
@@ -1164,7 +1164,7 @@ OSVERSION!= ${AWK} '/^\#define[[:blank:]]__FreeBSD_version/ {print $$3}' < ${SRC
. endif
_EXPORTED_VARS+= OSVERSION
-. if ${OPSYS} == FreeBSD && (${OSVERSION} < 1303400 || (${OSVERSION} >= 1400000 && ${OSVERSION} < 1401000))
+. if ${OPSYS} == FreeBSD && (${OSVERSION} < 1304000 || (${OSVERSION} >= 1400000 && ${OSVERSION} < 1401000))
_UNSUPPORTED_SYSTEM_MESSAGE= Ports Collection support for your ${OPSYS} version has ended, and no ports\
are guaranteed to build on this system. Please upgrade to a supported release.
. if defined(ALLOW_UNSUPPORTED_SYSTEM)