Date: Thu, 4 Oct 2012 12:34:51 +0000 (UTC) From: Renato Botelho <garga@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305256 - in head/misc: compat7x compat8x compat9x Message-ID: <201210041234.q94CYpGH054282@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201210041234.q94CYpGH054282>