diff options
-rw-r--r-- | misc/compat7x/Makefile | 4 | ||||
-rw-r--r-- | misc/compat8x/Makefile | 4 | ||||
-rw-r--r-- | misc/compat9x/Makefile | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/misc/compat7x/Makefile b/misc/compat7x/Makefile index 5ee0b1ff318d..af72b584a700 100644 --- a/misc/compat7x/Makefile +++ b/misc/compat7x/Makefile @@ -27,8 +27,8 @@ USE_LDCONFIG= ${TARGET_DIR} .include <bsd.port.pre.mk> -.if ${OSVERSION} < 800000 -IGNORE= is for FreeBSD 8.x and newer +.if ${OSVERSION} < 700000 +IGNORE= is for FreeBSD 7.x and newer .endif .if ${ARCH} == amd64 diff --git a/misc/compat8x/Makefile b/misc/compat8x/Makefile index eee133c28588..1f47d0f51cf4 100644 --- a/misc/compat8x/Makefile +++ b/misc/compat8x/Makefile @@ -26,8 +26,8 @@ USE_LDCONFIG= ${TARGET_DIR} .include <bsd.port.pre.mk> -.if ${OSVERSION} < 900000 -IGNORE= is for FreeBSD 9.x and newer +.if ${OSVERSION} < 800000 +IGNORE= is for FreeBSD 8.x and newer .endif .if ${ARCH} == amd64 diff --git a/misc/compat9x/Makefile b/misc/compat9x/Makefile index 56382b07adac..22843abd0b2a 100644 --- a/misc/compat9x/Makefile +++ b/misc/compat9x/Makefile @@ -26,8 +26,8 @@ USE_LDCONFIG= ${TARGET_DIR} .include <bsd.port.pre.mk> -.if ${OSVERSION} < 1000000 -IGNORE= is for FreeBSD 10.x and newer +.if ${OSVERSION} < 900000 +IGNORE= is for FreeBSD 9.x and newer .endif .if ${ARCH} == amd64 |