diff options
-rw-r--r-- | net/aoe/Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/net/aoe/Makefile b/net/aoe/Makefile index e7a4b512ad68..506d291cabb4 100644 --- a/net/aoe/Makefile +++ b/net/aoe/Makefile @@ -7,7 +7,7 @@ CATEGORIES= net kld MASTER_SITES= http://www.son.org/download/ DISTNAME= ${PORTNAME}-freebsd-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= fjoe@FreeBSD.org COMMENT= FreeBSD driver for ATA over Ethernet (AoE) NO_PACKAGE= Should be in sync with the kernel to work correctly @@ -17,7 +17,6 @@ WRKSRC= ${WRKDIR}/dev/aoe MAN4= aoe.4 USE_RC_SUBR= aoe -NO_STAGE= yes pre-everything:: @if [ ! -f /usr/src/sys/Makefile ]; then \ ${ECHO_MSG} ">> The AoE port needs FreeBSD kernel source code to compile."; \ @@ -26,9 +25,8 @@ pre-everything:: fi do-install: - ${MKDIR} ${PREFIX}/lib/aoe - ${INSTALL_KLD} ${WRKSRC}/aoe.ko ${PREFIX}/lib/aoe - ${INSTALL_MAN} ${WRKDIR}/aoe.4 ${PREFIX}/man/man4 - ${CAT} ${PKGMESSAGE} + ${MKDIR} ${STAGEDIR}${PREFIX}/lib/aoe + ${INSTALL_KLD} ${WRKSRC}/aoe.ko ${STAGEDIR}${PREFIX}/lib/aoe + ${INSTALL_MAN} ${WRKDIR}/aoe.4 ${STAGEDIR}${PREFIX}/man/man4 .include <bsd.port.mk> |