diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2021-06-26 06:54:35 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2021-06-26 06:54:35 +0000 |
commit | df33b3edc6144bb95cad860e9e98758d2bd13dc3 (patch) | |
tree | a26ae3403fb7342e3582807e22d67cd0d122c221 /app/xenodm | |
parent | d9837bdbdb80ca2be005bae784babecc3a2ef620 (diff) |
Set VT in Xservers for riscv64 too.
Diffstat (limited to 'app/xenodm')
-rw-r--r-- | app/xenodm/Makefile.bsd-wrapper | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/app/xenodm/Makefile.bsd-wrapper b/app/xenodm/Makefile.bsd-wrapper index 06e52b510..2ad5dcba3 100644 --- a/app/xenodm/Makefile.bsd-wrapper +++ b/app/xenodm/Makefile.bsd-wrapper @@ -1,11 +1,12 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.6 2020/12/06 16:37:53 kettenis Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.7 2021/06/26 06:54:34 matthieu Exp $ .include <bsd.own.mk> XENODMCONFIGDIR=/etc/X11/xenodm PIXMAPDIR=$(XENODMCONFIGDIR)/pixmaps .if ${MACHINE} == amd64 || ${MACHINE} == arm64 || ${MACHINE} == armv7 \ - || ${MACHINE} == i386 || ${MACHINE} == macppc || ${MACHINE} == powerpc64 + || ${MACHINE} == i386 || ${MACHINE} == macppc || ${MACHINE} == powerpc64 \ + || ${MACHINE} == riscv64 DEFAULT_VT= --with-default-vt=vt05 .endif @@ -28,6 +29,9 @@ XENODMCONFIGFILES= \ XENODMCONFIGSCRIPTS= \ Xsession GiveConsole TakeConsole Xsetup_0 Xstartup Xreset +foo: + @echo $(MACHINE) + afterinstall: $(INSTALL_DATA) ${.CURDIR}/config/OpenBSD_1bpp.xpm $(DESTDIR)$(PIXMAPDIR) $(INSTALL_DATA) ${.CURDIR}/config/OpenBSD_4bpp.xpm $(DESTDIR)$(PIXMAPDIR) |