fix(build): fix aarch64 error at rtsp-simple-server install
Binary is named 'arm64v8' not 'aarch64' Signed-off-by: Stephan Wendel <me@stephanwe.de>
This commit is contained in:
parent
0c0df27504
commit
d8e98acd6a
@ -17,7 +17,7 @@
|
||||
USTREAMER_PATH = ustreamer
|
||||
ARCH = $(shell uname -m)
|
||||
RTSP_PATH = rtsp-simple-server
|
||||
RTSP_ARCH = $(shell uname -m | cut -c '-5' | sed 's/x86_6/amd64/')
|
||||
RTSP_ARCH = $(shell uname -m | cut -c '-5' | sed 's/x86_6/amd64/;s/aarch/arm64v8')
|
||||
RTSP_VERSION = $(shell cat $(RTSP_PATH)/version)
|
||||
DL_RTSP = https://github.com/aler9/rtsp-simple-server/releases/download/$(RTSP_VERSION)/
|
||||
RTSP_ARCHIVE = rtsp-simple-server_$(RTSP_VERSION)_linux_$(RTSP_ARCH).tar.gz
|
||||
|
Loading…
x
Reference in New Issue
Block a user