svn commit: r305256 - in head/misc: compat7x compat8x compat9x
Renato Botelho
garga at FreeBSD.org
Thu Oct 4 12:34:51 UTC 2012
Author: garga
Date: Thu Oct 4 12:34:50 2012
New Revision: 305256
URL: http://svn.freebsd.org/changeset/ports/305256
Log:
Lower OSVERSION checking for compat[789]x. This was requested by bapt@ and i
agree with his arguments. There are no reasons to deny a compatNx package
being built on a FreeBSD-N version.
Modified:
head/misc/compat7x/Makefile
head/misc/compat8x/Makefile
head/misc/compat9x/Makefile
Modified: head/misc/compat7x/Makefile
==============================================================================
--- head/misc/compat7x/Makefile Thu Oct 4 12:14:35 2012 (r305255)
+++ head/misc/compat7x/Makefile Thu Oct 4 12:34:50 2012 (r305256)
@@ -27,7 +27,7 @@ USE_LDCONFIG= ${TARGET_DIR}
.include <bsd.port.pre.mk>
-.if ${OSVERSION} < 800105
+.if ${OSVERSION} < 800000
IGNORE= is for FreeBSD 8.x and newer
.endif
Modified: head/misc/compat8x/Makefile
==============================================================================
--- head/misc/compat8x/Makefile Thu Oct 4 12:14:35 2012 (r305255)
+++ head/misc/compat8x/Makefile Thu Oct 4 12:34:50 2012 (r305256)
@@ -26,7 +26,7 @@ USE_LDCONFIG= ${TARGET_DIR}
.include <bsd.port.pre.mk>
-.if ${OSVERSION} < 900042
+.if ${OSVERSION} < 900000
IGNORE= is for FreeBSD 9.x and newer
.endif
Modified: head/misc/compat9x/Makefile
==============================================================================
--- head/misc/compat9x/Makefile Thu Oct 4 12:14:35 2012 (r305255)
+++ head/misc/compat9x/Makefile Thu Oct 4 12:34:50 2012 (r305256)
@@ -26,7 +26,7 @@ USE_LDCONFIG= ${TARGET_DIR}
.include <bsd.port.pre.mk>
-.if ${OSVERSION} < 1000009
+.if ${OSVERSION} < 1000000
IGNORE= is for FreeBSD 10.x and newer
.endif
More information about the svn-ports-head
mailing list