diff options
author | Renato Botelho <garga@FreeBSD.org> | 2012-10-04 12:34:50 +0000 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2012-10-04 12:34:50 +0000 |
commit | cdbf587df08bd2306ea93c349f2a5b137cb4be3f (patch) | |
tree | 83cafe6e67f247a5079d0b3e67917fa31e004a7f | |
parent | - Update to 0.8.70 [1] (diff) |
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.
-rw-r--r-- | misc/compat7x/Makefile | 2 | ||||
-rw-r--r-- | misc/compat8x/Makefile | 2 | ||||
-rw-r--r-- | misc/compat9x/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/misc/compat7x/Makefile b/misc/compat7x/Makefile index 4349314f7c98..5ee0b1ff318d 100644 --- a/misc/compat7x/Makefile +++ b/misc/compat7x/Makefile @@ -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 diff --git a/misc/compat8x/Makefile b/misc/compat8x/Makefile index 863b88634636..eee133c28588 100644 --- a/misc/compat8x/Makefile +++ b/misc/compat8x/Makefile @@ -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 diff --git a/misc/compat9x/Makefile b/misc/compat9x/Makefile index 30da87b2b4e7..56382b07adac 100644 --- a/misc/compat9x/Makefile +++ b/misc/compat9x/Makefile @@ -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 |