diff options
author | Mike Silbersack <silby@FreeBSD.org> | 2004-01-21 22:10:20 +0000 |
---|---|---|
committer | Mike Silbersack <silby@FreeBSD.org> | 2004-01-21 22:10:20 +0000 |
commit | 4c73ff2ad717a08bbf995cade51c21915ec8b3a6 (patch) | |
tree | 12399b186bbb3d40a95a1863b7602c0a0aea1e2e /emulators/vmware3 | |
parent | - Update to 4.0.r2 (diff) |
Make the linprocfs check succeed if linprocfs is already mounted, and
make the error message (hopefully) more descriptive.
Diffstat (limited to 'emulators/vmware3')
-rw-r--r-- | emulators/vmware3/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emulators/vmware3/Makefile b/emulators/vmware3/Makefile index 380efe7e6433..74f296ea9700 100644 --- a/emulators/vmware3/Makefile +++ b/emulators/vmware3/Makefile @@ -54,8 +54,8 @@ MODULES= vmmon vmnet 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) -IGNORE= "This software absolutely requires Linux procfs support" +.if !defined(HAVE_LINPROCFS) && !exists(/modules/linprocfs.ko) && !exists(/boot/kernel/linprocfs.ko) && !exists(${PREFIX}/modules/linprocfs.ko) && !exists(/compat/linux/proc/version) +IGNORE= "linprocfs is required, please build the module and/or add it to your kernel" .endif .if !exists(${SRC_BASE}/Makefile) |