Skip to content

Commit

Permalink
Fix plist environment value for aarch64 and i386 arch
Browse files Browse the repository at this point in the history
  • Loading branch information
Charlie Root committed Sep 10, 2020
1 parent 6f467a6 commit e98fa46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x11-wm/enlightenment/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ CURRENT_ARCH= ${ARCH}
.if ${CURRENT_ARCH} == amd64
ENLIGHTENMENT_ARCH= ${OPSYS:tl}-x86_64
.else
.if ${CURRENT_ARCH} == 'i386'
.if ${CURRENT_ARCH} == i386
ENLIGHTENMENT_ARCH= ${OPSYS:tl}-x86
.else
.if ${CURRENT_ARCH} == 'aarch64'
.if ${CURRENT_ARCH} == aarch64
ENLIGHTENMENT_ARCH= ${OPSYS:tl}-arm
.else
ENLIGHTENMENT_ARCH= ${OPSYS:tl}-${CURRENT_ARCH}
Expand Down

0 comments on commit e98fa46

Please sign in to comment.