1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-25 04:43:33 +00:00

Seems like I had another fix in my system. On 5.0, the vmnet1 in

$LINUXBASE/dev had a different device minor than the cloned one
in /dev/vmnet1.  Thus delete the one in $LINUXBASE and link it
to the devfs one to have everything right.

This fixes the port on my fresh installed 5.0-RELEASE box.
This commit is contained in:
Alexander Langer 2003-02-12 19:15:54 +00:00
parent d688664e3f
commit 7c0370e8fb
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=75387
2 changed files with 10 additions and 2 deletions

View File

@ -114,7 +114,7 @@ post-patch:
cat ${FILESDIR}/fo_ioctl.patch | (cd ${WRKSRC} && patch) > /dev/null 2>&1
.endif
.if ${OSVERSION} >= 500100
cat ${FILESDIR}/filedesc.patch | (cd ${WRKSRC} && patch)
cat ${FILESDIR}/filedesc.patch | (cd ${WRKSRC} && patch) > /dev/null 2>&1
cat ${FILESDIR}/m_waitok.patch | (cd ${WRKSRC} && patch) > /dev/null 2>&1
.endif
@ -174,6 +174,10 @@ pre-install: setoptions
post-install:
${LN} -sf ${PREFIX}/etc/vmware /etc/
.if ${OSVERSION} >= 500100
${RM} -f ${LINUXBASE}/dev/vmnet1
${LN} -sf /dev/vmnet1 ${LINUXBASE}/dev/vmnet1
.endif
@${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>

View File

@ -114,7 +114,7 @@ post-patch:
cat ${FILESDIR}/fo_ioctl.patch | (cd ${WRKSRC} && patch) > /dev/null 2>&1
.endif
.if ${OSVERSION} >= 500100
cat ${FILESDIR}/filedesc.patch | (cd ${WRKSRC} && patch)
cat ${FILESDIR}/filedesc.patch | (cd ${WRKSRC} && patch) > /dev/null 2>&1
cat ${FILESDIR}/m_waitok.patch | (cd ${WRKSRC} && patch) > /dev/null 2>&1
.endif
@ -174,6 +174,10 @@ pre-install: setoptions
post-install:
${LN} -sf ${PREFIX}/etc/vmware /etc/
.if ${OSVERSION} >= 500100
${RM} -f ${LINUXBASE}/dev/vmnet1
${LN} -sf /dev/vmnet1 ${LINUXBASE}/dev/vmnet1
.endif
@${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>