fix(build): fix typo in sed command

Signed-off-by: Stephan Wendel <me@stephanwe.de>
This commit is contained in:
Stephan Wendel 2022-02-27 16:08:26 +01:00
parent d8e98acd6a
commit 96f6592e5c
No known key found for this signature in database
GPG Key ID: F465B83ACBA45639

@ -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/;s/aarch/arm64v8')
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