diff options
author | Mike Larkin <mlarkin@cvs.openbsd.org> | 2016-10-26 05:26:37 +0000 |
---|---|---|
committer | Mike Larkin <mlarkin@cvs.openbsd.org> | 2016-10-26 05:26:37 +0000 |
commit | 4f21a2942d88621575eca8a2abf806f5209b034f (patch) | |
tree | 6008fe8c478fb4676c6ee554e6fbdb8a2ecef136 /usr.sbin/vmctl | |
parent | bfd35f95c6162a15c5969800e38e1f9f245da99f (diff) |
vmd(8)/vmctl(8) for i386. Some ugliness in #ifdef __i386__ areas will be
fixed in tree, but the changes required were pretty minimal.
Note that i386 hosts are still presently limited to running i386 guests.
ok deraadt, stefan, jca
Diffstat (limited to 'usr.sbin/vmctl')
-rw-r--r-- | usr.sbin/vmctl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/vmctl/Makefile b/usr.sbin/vmctl/Makefile index 2f7dc99ef8e..cf5e25aebc1 100644 --- a/usr.sbin/vmctl/Makefile +++ b/usr.sbin/vmctl/Makefile @@ -1,6 +1,6 @@ -# $OpenBSD: Makefile,v 1.2 2015/12/05 20:26:38 reyk Exp $ +# $OpenBSD: Makefile,v 1.3 2016/10/26 05:26:36 mlarkin Exp $ -.if ${MACHINE} == "amd64" +.if ${MACHINE} == "amd64" || ${MACHINE} == "i386" PROG= vmctl SRCS= vmctl.c main.c |