diff options
author | gjb <gjb@FreeBSD.org> | 2013-12-07 18:50:23 +0800 |
---|---|---|
committer | gjb <gjb@FreeBSD.org> | 2013-12-07 18:50:23 +0800 |
commit | 5a43b7642557b420d8ee088c1d3e009a5ece9a7c (patch) | |
tree | 38fb9960e79051a9af0cbb9227ac29e242d7f14f /sysutils/firstboot-pkgs | |
parent | 9bdc7b94ce9a126de3015bdac73d0b12e4efa96d (diff) | |
download | freebsd-ports-gnome-5a43b7642557b420d8ee088c1d3e009a5ece9a7c.tar.gz freebsd-ports-gnome-5a43b7642557b420d8ee088c1d3e009a5ece9a7c.tar.zst freebsd-ports-gnome-5a43b7642557b420d8ee088c1d3e009a5ece9a7c.zip |
To prevent fallout of lowering __FreeBSD_version in releng/10.0 branch,
adjust OSVERSION evaluation in ports that specifically use '100050N'.
Approved by: affected maintainers (implicit)
Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'sysutils/firstboot-pkgs')
-rw-r--r-- | sysutils/firstboot-pkgs/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysutils/firstboot-pkgs/Makefile b/sysutils/firstboot-pkgs/Makefile index 46a6e8b5dc8f..1909688efffe 100644 --- a/sysutils/firstboot-pkgs/Makefile +++ b/sysutils/firstboot-pkgs/Makefile @@ -16,7 +16,7 @@ USE_RC_SUBR= firstboot_pkgs .include <bsd.port.pre.mk> -.if ${OSVERSION} < 902504 || ( ${OSVERSION} >= 1000000 && ${OSVERSION} < 1000501 ) || ( ${OSVERSION} >= 1100000 && ${OSVERSION} < 1100001 ) +.if ${OSVERSION} < 902504 || ( ${OSVERSION} >= 1000000 && ${OSVERSION} < 1000100 ) || ( ${OSVERSION} >= 1000500 && ${OSVERSION} < 1000501 ) || (${OSVERSION} >= 1100000 && ${OSVERSION} < 1100001 ) IGNORE= first boot rc.d scripts not supported on this version of FreeBSD .endif |