diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2020-12-06 16:37:54 +0100 |
---|---|---|
committer | Matthieu Herrb <matthieu@herrb.eu> | 2021-08-30 19:44:08 +0200 |
commit | 904a57bf917f82a07716b2a8626deaa59a5b952a (patch) | |
tree | 56e1b0d1e85121967f07e68723a24859a42b2c4a /Makefile.bsd-wrapper | |
parent | b835f9e0644a28597470bee3a7549c7cc8ec6394 (diff) |
Set the VT to be used by the X server on armv7 and powerpc64 too.
ok phessler@, matthieu@
Diffstat (limited to 'Makefile.bsd-wrapper')
-rw-r--r-- | Makefile.bsd-wrapper | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.bsd-wrapper b/Makefile.bsd-wrapper index 127a621..06e52b5 100644 --- a/Makefile.bsd-wrapper +++ b/Makefile.bsd-wrapper @@ -1,11 +1,11 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.5 2020/04/01 19:58:02 matthieu Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.6 2020/12/06 16:37:53 kettenis Exp $ .include <bsd.own.mk> XENODMCONFIGDIR=/etc/X11/xenodm PIXMAPDIR=$(XENODMCONFIGDIR)/pixmaps -.if ${MACHINE} == amd64 || ${MACHINE} == arm64 || ${MACHINE} == i386 \ - || ${MACHINE} == macppc +.if ${MACHINE} == amd64 || ${MACHINE} == arm64 || ${MACHINE} == armv7 \ + || ${MACHINE} == i386 || ${MACHINE} == macppc || ${MACHINE} == powerpc64 DEFAULT_VT= --with-default-vt=vt05 .endif |