In case of MODULES_WITH_WORLD=yes in /etc/make.conf, modules are being installed to /boot/modules/ and that's why existing check for linprocfs.ko in emulators/vmware3/Makefile says that user does not have linprocfs.ko, while it exists in /boot/modules/ Fix: Please apply patch attached. How-To-Repeat: echo MODULES_WITH_WORLD=yes >> /etc/make.conf cd /usr/src make buildworld make buildkernel make installkernel make installworld cd /usr/ports/emulators/vmware3 make
State Changed From-To: open->feedback Awaiting maintainers feedback
This, along ports/96491 look fine, although I would finally drop the dependency over /usr/src and replace what was really meant to be /usr/src/sys. Here's the diff after merging ports/96543 and ports/96491: --- Makefile~ Tue May 2 23:02:08 2006 +++ Makefile Tue May 2 23:02:47 2006 @@ -64,7 +64,7 @@ IGNORE= linprocfs is required, please build the module and/or add it to your kernel .endif -.if !exists(${SRC_BASE}/Makefile) +.if !exists(${SRC_BASE}/sys/Makefile) IGNORE= kernel source files required .endif Thanks Orlando
State Changed From-To: feedback->closed Committed. Thanks!