diff options
author | marcus <marcus@FreeBSD.org> | 2004-01-10 07:18:55 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2004-01-10 07:18:55 +0000 |
commit | 84b511cc00aa9cff97b07b925ea981c50860a542 (patch) | |
tree | b9e5be8838f7a723de1019151c921bd18d3b34ad /emulators/vmware3 | |
parent | fd04bde106f30e30cd9973fda07e944affde926a (diff) | |
download | FreeBSD-ports-84b511cc00aa9cff97b07b925ea981c50860a542.zip FreeBSD-ports-84b511cc00aa9cff97b07b925ea981c50860a542.tar.gz |
Substitute BROKEN with IGNORE in cases where the port requires the src tree
to be present, or does not compile on certain versions of FreeBSD. This
will potentially avoid needless compilations on bento, and has the added
benefit of improving certain reporting tools. To most users, this change
is a no-op.
PR: 61090
Submitted by: linimon
Diffstat (limited to 'emulators/vmware3')
-rw-r--r-- | emulators/vmware3/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/emulators/vmware3/Makefile b/emulators/vmware3/Makefile index ec76746..380efe7 100644 --- a/emulators/vmware3/Makefile +++ b/emulators/vmware3/Makefile @@ -51,15 +51,15 @@ MODULES= vmmon vmnet .include <bsd.port.pre.mk> .if ${OSVERSION} < 480102 -BROKEN= "Systems prior to FreeBSD 480102 currently out of support" +IGNORE= "Systems prior to FreeBSD 480102 currently out of support" .endif .if !defined(HAVE_LINPROCFS) && !exists(/modules/linprocfs.ko) && !exists(/boot/kernel/linprocfs.ko) && !exists(${PREFIX}/modules/linprocfs.ko) -BROKEN= "This software absolutely requires Linux procfs support" +IGNORE= "This software absolutely requires Linux procfs support" .endif .if !exists(${SRC_BASE}/Makefile) -BROKEN= "Kernel source files required" +IGNORE= "Kernel source files required" .endif .if ${OSVERSION} < 500023 |