diff options
author | marcus <marcus@FreeBSD.org> | 2004-01-10 15:18:55 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2004-01-10 15:18:55 +0800 |
commit | 84b511cc00aa9cff97b07b925ea981c50860a542 (patch) | |
tree | b9e5be8838f7a723de1019151c921bd18d3b34ad /emulators/vmware2 | |
parent | fd04bde106f30e30cd9973fda07e944affde926a (diff) | |
download | freebsd-ports-gnome-84b511cc00aa9cff97b07b925ea981c50860a542.tar.gz freebsd-ports-gnome-84b511cc00aa9cff97b07b925ea981c50860a542.tar.zst freebsd-ports-gnome-84b511cc00aa9cff97b07b925ea981c50860a542.zip |
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/vmware2')
-rw-r--r-- | emulators/vmware2/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/emulators/vmware2/Makefile b/emulators/vmware2/Makefile index 7244c5c3f642..5630434144e0 100644 --- a/emulators/vmware2/Makefile +++ b/emulators/vmware2/Makefile @@ -54,15 +54,15 @@ MODULES= vmmon vmnet .include <bsd.port.pre.mk> .if ${OSVERSION} < 400013 -BROKEN= "Systems prior to 400013 is out of support" +IGNORE= "Systems prior to 400013 is 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 exists(${WRKDIRPREFIX}${.CURDIR}/work/Makefile.inc.net) |