diff options
author | edwin <edwin@FreeBSD.org> | 2007-10-07 02:56:19 +0000 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2007-10-07 02:56:19 +0000 |
commit | a2ab1c92626150c186b51a1c1110d4bdbf7bba5d (patch) | |
tree | 43df51e08403ed3acae47a1abb717b5fa7dc0ba5 /emulators/vmware-guestd5 | |
parent | df212ea665e32c331f1268d5b03dbb0dcca46137 (diff) | |
download | FreeBSD-ports-a2ab1c92626150c186b51a1c1110d4bdbf7bba5d.zip FreeBSD-ports-a2ab1c92626150c186b51a1c1110d4bdbf7bba5d.tar.gz |
Replace all INSTALL_DATA/INSTALL_SCRIPT and INSTALL_PROGRAM/STRIP=
hacks to install kernel loadable modules correctly on amd64 platforms
with the new INSTALL_KLD command.
All PORTREVISIONS have been bumped to show when the new version of
installing became available.
Diffstat (limited to 'emulators/vmware-guestd5')
-rw-r--r-- | emulators/vmware-guestd5/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/emulators/vmware-guestd5/Makefile b/emulators/vmware-guestd5/Makefile index 57ee3e2..6bf2521 100644 --- a/emulators/vmware-guestd5/Makefile +++ b/emulators/vmware-guestd5/Makefile @@ -7,7 +7,7 @@ PORTNAME= vmware PORTVERSION= ${VMWARE_VER}.${BUILD_VER} -PORTREVISION?= 2 +PORTREVISION?= 3 CATEGORIES= emulators kld MASTER_SITES= # bundled with VMware Workstation PKGNAMESUFFIX?= -guestd @@ -200,11 +200,11 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/lib/sbin${BITS}/vmware-checkvm ${PREFIX}/sbin .if defined(WITH_VMWARE_VMMEMCTL) ${MKDIR} ${VMWARE_KMODDIR} - ${INSTALL_PROGRAM} ${WRKDIR}/vmmemctl-only/vmmemctl.ko ${VMWARE_KMODDIR} + ${INSTALL_KLD} ${WRKDIR}/vmmemctl-only/vmmemctl.ko ${VMWARE_KMODDIR} .endif .if defined(WITH_VMWARE_VMXNET) ${MKDIR} ${VMWARE_KMODDIR} - ${INSTALL_PROGRAM} ${WRKSRC}/lib/modules/binary/FreeBSD${VMWARE_VMXNET_PATH} ${VMWARE_KMODDIR} + ${INSTALL_KLD} ${WRKSRC}/lib/modules/binary/FreeBSD${VMWARE_VMXNET_PATH} ${VMWARE_KMODDIR} .endif -${WRKSRC}/lib/sbin${BITS}/vmware-guestd --cmd toolinstall.end ${MKDIR} ${PREFIX}/share/vmware-tools |