diff options
author | Makoto Matsushita <matusita@FreeBSD.org> | 2004-06-25 13:04:03 +0000 |
---|---|---|
committer | Makoto Matsushita <matusita@FreeBSD.org> | 2004-06-25 13:04:03 +0000 |
commit | 04117250712ec1222db2c22e8d161f02ee448ea9 (patch) | |
tree | 8c5faae7eebba6d78fb39b23c51889504a1661e0 /emulators/vmware-guestd6 | |
parent | Update to version 0.4.0d (diff) |
Fix kernel module build.
Since 'OBJS=' line is inserted _after_ bsd.kmod.mk, OBJS value is
overridden by the line (ahh...) Hopefully, 'OBJS=' line is inserted
after 'SRCS=' line, but there's no handy way I suppose (sed's command
'i' requires to follow a newline, but how can I put a newline within
a one line?)
Since the contents (actually, kernel module) are changed,
bump PORTREVISION.
Submitted by: sobomax
Notes
Notes:
svn path=/head/; revision=112237
Diffstat (limited to 'emulators/vmware-guestd6')
-rw-r--r-- | emulators/vmware-guestd6/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emulators/vmware-guestd6/Makefile b/emulators/vmware-guestd6/Makefile index ef50692e2a9a..a16399b41fff 100644 --- a/emulators/vmware-guestd6/Makefile +++ b/emulators/vmware-guestd6/Makefile @@ -7,7 +7,7 @@ PORTNAME= vmware PORTVERSION= ${VMWARE_VER}.${BUILD_VER} -#PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= emulators MASTER_SITES= # bundled with VMware itself PKGNAMESUFFIX?= -guestd @@ -114,7 +114,7 @@ post-extract: post-patch: .if defined(WITH_VMWARE_VMMEMCTL) ${REINPLACE_CMD} -e 's|vmmemctl1.o||' ${WRKDIR}/vmmemctl-only/Makefile - ${ECHO_CMD} "OBJS=vmmemctl1.o" >> ${WRKDIR}/vmmemctl-only/Makefile + ${ECHO_CMD} "OBJS+=vmmemctl1.o" >> ${WRKDIR}/vmmemctl-only/Makefile .endif .if defined(VMWARE_X_PORTS) |