diff options
author | matusita <matusita@FreeBSD.org> | 2004-06-25 21:04:03 +0800 |
---|---|---|
committer | matusita <matusita@FreeBSD.org> | 2004-06-25 21:04:03 +0800 |
commit | 56e8070e5c4f60505e71e13335bcf7fc7b91e70a (patch) | |
tree | 0bef2daa55172e492edc6398f3038af3940c123d /emulators | |
parent | d5cfaa3812d756a571df32be084f6d9ace574568 (diff) | |
download | freebsd-ports-gnome-56e8070e5c4f60505e71e13335bcf7fc7b91e70a.tar.gz freebsd-ports-gnome-56e8070e5c4f60505e71e13335bcf7fc7b91e70a.tar.zst freebsd-ports-gnome-56e8070e5c4f60505e71e13335bcf7fc7b91e70a.zip |
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
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/vmware-guestd4/Makefile | 4 | ||||
-rw-r--r-- | emulators/vmware-guestd5/Makefile | 4 | ||||
-rw-r--r-- | emulators/vmware-guestd6/Makefile | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/emulators/vmware-guestd4/Makefile b/emulators/vmware-guestd4/Makefile index ef50692e2a9a..a16399b41fff 100644 --- a/emulators/vmware-guestd4/Makefile +++ b/emulators/vmware-guestd4/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) diff --git a/emulators/vmware-guestd5/Makefile b/emulators/vmware-guestd5/Makefile index ef50692e2a9a..a16399b41fff 100644 --- a/emulators/vmware-guestd5/Makefile +++ b/emulators/vmware-guestd5/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) 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) |