Skip to content

Commit

Permalink
Mk/bsd.port.mk: fix OSVERSION for 13.4
Browse files Browse the repository at this point in the history
Reported by:	bofh
Approved by:	portmgr (implicit)
Fixes:		8777dde "all: remove support for expired FreeBSD 13.3"
  • Loading branch information
rene0 committed Jan 1, 2025
1 parent 5d17e8f commit 65b88c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mk/bsd.port.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 65b88c2

Please sign in to comment.