diff options
author | rene <rene@FreeBSD.org> | 2014-01-25 08:02:33 +0800 |
---|---|---|
committer | rene <rene@FreeBSD.org> | 2014-01-25 08:02:33 +0800 |
commit | 004d8224862227f28ce4baca99ee0b6c5e84c961 (patch) | |
tree | 24e2a0d4b3037298abf9a2213b6e50265438f9e5 | |
parent | 0f864bc6a6d68021913c0adc76508148c1ecf985 (diff) | |
download | freebsd-ports-graphics-004d8224862227f28ce4baca99ee0b6c5e84c961.tar.gz freebsd-ports-graphics-004d8224862227f28ce4baca99ee0b6c5e84c961.tar.zst freebsd-ports-graphics-004d8224862227f28ce4baca99ee0b6c5e84c961.zip |
Support stage
Approved by: portmgr (infrastructure blanket)
-rw-r--r-- | emulators/virtio-kmod/Makefile | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/emulators/virtio-kmod/Makefile b/emulators/virtio-kmod/Makefile index 1401f9691a0..d4169864e4d 100644 --- a/emulators/virtio-kmod/Makefile +++ b/emulators/virtio-kmod/Makefile @@ -17,8 +17,6 @@ WRKSRC= ${WRKDIR} NEEDSUBDIRS= amd64 cam conf contrib dev/pci geom i386 kern net netinet netinet6 \ sys tools vm x86 -NO_STAGE= yes - USES= kmod .include <bsd.port.pre.mk> @@ -59,13 +57,10 @@ do-build: do-install: .for f in pci/virtio_pci virtio/virtio block/virtio_blk balloon/virtio_balloon network/if_vtnet - ${INSTALL_KLD} ${WRKSRC}/sys/modules/virtio/${f}.ko ${KMODDIR} - ${INSTALL_KLD} ${WRKSRC}/sys/modules/virtio/${f}.ko.symbols ${KMODDIR} + ${INSTALL_KLD} ${WRKSRC}/sys/modules/virtio/${f}.ko ${STAGEDIR}${KMODDIR} + ${INSTALL_KLD} ${WRKSRC}/sys/modules/virtio/${f}.ko.symbols ${STAGEDIR}${KMODDIR} .endfor -post-install: - ${CAT} ${PKGMESSAGE} - # For maintainer only. SVN_MIRROR?= http://svn.freebsd.org/base EXPDIR= ${WRKSRC}/src/sys |