summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Herrb <matthieu@cvs.openbsd.org>2020-04-01 19:58:03 +0000
committerMatthieu Herrb <matthieu@herrb.eu>2020-07-14 15:52:44 +0200
commit19f17249103c070cdc20603eb3e7e06981d21bdb (patch)
tree70282fbf9ae6006a5e2531c60135ddef2357ed54
parent3a7498ba7cc544e756c7c3dadf2afc102358787c (diff)
sort architectures list
-rw-r--r--Makefile.bsd-wrapper4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.bsd-wrapper b/Makefile.bsd-wrapper
index 5095368..a66110b 100644
--- a/Makefile.bsd-wrapper
+++ b/Makefile.bsd-wrapper
@@ -4,8 +4,8 @@
XENODMCONFIGDIR=/etc/X11/xenodm
PIXMAPDIR=$(XENODMCONFIGDIR)/pixmaps
-.if ${MACHINE} == i386 || ${MACHINE} == amd64 || ${MACHINE} == macppc \
- || ${MACHINE} == arm64
+.if ${MACHINE} == amd64 || ${MACHINE} == arm64 || ${MACHINE} == i386 \
+ || ${MACHINE} == macppc
DEFAULT_VT= --with-default-vt=vt05
.endif