diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2020-04-01 19:46:04 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@herrb.eu> | 2020-07-14 15:52:44 +0200 |
commit | 3a7498ba7cc544e756c7c3dadf2afc102358787c (patch) | |
tree | 187221959c2b6d7ee2a932a65f0b40259a73db22 | |
parent | 8ee116ce8625e6180f7ad4d91e675e53df5deaf1 (diff) |
Set the VT to be used by the X server on arm64 too. ok phessler@
-rw-r--r-- | Makefile.bsd-wrapper | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.bsd-wrapper b/Makefile.bsd-wrapper index e4e7944..5095368 100644 --- a/Makefile.bsd-wrapper +++ b/Makefile.bsd-wrapper @@ -4,7 +4,8 @@ XENODMCONFIGDIR=/etc/X11/xenodm PIXMAPDIR=$(XENODMCONFIGDIR)/pixmaps -.if ${MACHINE} == i386 || ${MACHINE} == amd64 || ${MACHINE} == macppc +.if ${MACHINE} == i386 || ${MACHINE} == amd64 || ${MACHINE} == macppc \ + || ${MACHINE} == arm64 DEFAULT_VT= --with-default-vt=vt05 .endif |