diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2020-04-01 19:58:03 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@herrb.eu> | 2020-07-14 15:52:44 +0200 |
commit | 19f17249103c070cdc20603eb3e7e06981d21bdb (patch) | |
tree | 70282fbf9ae6006a5e2531c60135ddef2357ed54 | |
parent | 3a7498ba7cc544e756c7c3dadf2afc102358787c (diff) |
sort architectures list
-rw-r--r-- | Makefile.bsd-wrapper | 4 |
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 |