Skip UPX on Mac ARM

This commit is contained in:
Matt Swann 2021-08-31 03:10:16 +00:00 committed by GitHub
parent 938e8d19ae
commit 102f8065b8
1 changed files with 6 additions and 1 deletions

View File

@ -12,7 +12,12 @@ MD2ROFF_BIN=github.com/davidnewhall/md2roff@v0.0.1
RSRC_BIN=github.com/akavel/rsrc
# If upx is available, use it to compress the binaries.
UPXPATH=$(shell which upx)
# Skip upx in Mac ARM environments: https://github.com/upx/upx/issues/446
ifeq ($(shell uname -ps),Darwin arm)
UPXPATH=
else
UPXPATH=$(shell which upx)
endif
# Travis CI passes the version in. Local builds get it from the current git tag.
ifeq ($(VERSION),)