diff options
author | asami <asami@FreeBSD.org> | 2000-01-13 10:39:35 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 2000-01-13 10:39:35 +0800 |
commit | 1cf301d5b669f55b5c378814cca9b7063ccd14eb (patch) | |
tree | e05bf45011be784e94fd6de03d295f009d4e3666 /misc | |
parent | a6fdef30f2bf41a44fd93982821425bf1d0e7d53 (diff) | |
download | freebsd-ports-gnome-1cf301d5b669f55b5c378814cca9b7063ccd14eb.tar.gz freebsd-ports-gnome-1cf301d5b669f55b5c378814cca9b7063ccd14eb.tar.zst freebsd-ports-gnome-1cf301d5b669f55b5c378814cca9b7063ccd14eb.zip |
Change
.elif ${OSVERSION} < 340000 || ${OSVERSION} >= 400000
to
.elif ${OSVERSION} >= 400000
The first version triggers a bug in the old make. Since I won't be
attempting to build these on an 2.2-stable machine anymore, just take
out that part of the check.
Reported by: Scott Allendorf <scott-allendorf@uiowa.edu>
Diffstat (limited to 'misc')
-rw-r--r-- | misc/30upgrade/Makefile | 3 | ||||
-rw-r--r-- | misc/31upgrade/Makefile | 3 | ||||
-rw-r--r-- | misc/32upgrade/Makefile | 3 | ||||
-rw-r--r-- | misc/34upgrade/Makefile | 3 |
4 files changed, 8 insertions, 4 deletions
diff --git a/misc/30upgrade/Makefile b/misc/30upgrade/Makefile index 1dea5fa8aa28..9a15949041bd 100644 --- a/misc/30upgrade/Makefile +++ b/misc/30upgrade/Makefile @@ -16,7 +16,8 @@ MAINTAINER= asami@FreeBSD.org .if !defined(PACKAGE_BUILDING) BROKEN= this \"port\" is for building packages for distribution only, please get the package from http://www.freebsd.org/ports/ if you need an upgrade -.elif ${OSVERSION} < 340000 || ${OSVERSION} >= 400000 +.elif ${OSVERSION} >= 400000 +# test for ${OSVERSION} >= 340000 removed -- it triggers a bug in old make FORBIDDEN= this needs to be built on a recent 3-stable system .endif NO_MTREE= yes diff --git a/misc/31upgrade/Makefile b/misc/31upgrade/Makefile index d9c1211514d7..58f145270919 100644 --- a/misc/31upgrade/Makefile +++ b/misc/31upgrade/Makefile @@ -16,7 +16,8 @@ MAINTAINER= asami@FreeBSD.org .if !defined(PACKAGE_BUILDING) BROKEN= this \"port\" is for building packages for distribution only, please get the package from http://www.freebsd.org/ports/ if you need an upgrade -.elif ${OSVERSION} < 340000 || ${OSVERSION} >= 400000 +.elif ${OSVERSION} >= 400000 +# test for ${OSVERSION} >= 340000 removed -- it triggers a bug in old make FORBIDDEN= this needs to be built on a recent 3-stable system .endif NO_MTREE= yes diff --git a/misc/32upgrade/Makefile b/misc/32upgrade/Makefile index d46a11a942e3..46c985241287 100644 --- a/misc/32upgrade/Makefile +++ b/misc/32upgrade/Makefile @@ -16,7 +16,8 @@ MAINTAINER= asami@FreeBSD.org .if !defined(PACKAGE_BUILDING) BROKEN= this \"port\" is for building packages for distribution only, please get the package from http://www.freebsd.org/ports/ if you need an upgrade -.elif ${OSVERSION} < 340000 || ${OSVERSION} >= 400000 +.elif ${OSVERSION} >= 400000 +# test for ${OSVERSION} >= 340000 removed -- it triggers a bug in old make FORBIDDEN= this needs to be built on a recent 3-stable system .endif NO_MTREE= yes diff --git a/misc/34upgrade/Makefile b/misc/34upgrade/Makefile index 51a110e23918..65b9805e8a48 100644 --- a/misc/34upgrade/Makefile +++ b/misc/34upgrade/Makefile @@ -16,7 +16,8 @@ MAINTAINER= asami@FreeBSD.org .if !defined(PACKAGE_BUILDING) BROKEN= this \"port\" is for building packages for distribution only, please get the package from http://www.freebsd.org/ports/ if you need an upgrade -.elif ${OSVERSION} < 340000 || ${OSVERSION} >= 400000 +.elif ${OSVERSION} >= 400000 +# test for ${OSVERSION} >= 340000 removed -- it triggers a bug in old make FORBIDDEN= this needs to be built on a recent 3-stable system .endif NO_MTREE= yes |