From 01119d19141ac61c3b0c6cd5077f0e38b5e8605f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adolfo=20G=C3=B3mez=20Garc=C3=ADa?= Date: Thu, 28 Oct 2021 11:19:49 +0200 Subject: [PATCH] Fixed armhf appimage generation --- client-py3/full/linux/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client-py3/full/linux/Makefile b/client-py3/full/linux/Makefile index 68b15a34..20efd8d7 100644 --- a/client-py3/full/linux/Makefile +++ b/client-py3/full/linux/Makefile @@ -57,8 +57,8 @@ build-appimage: ifeq ($(DISTRO),x86_64) cat udsclient-appimage-x86_64.recipe | sed -e s/"version: 0.0.0"/"version: $(VERSION)"/g > appimage.recipe endif -ifeq ($(DISTRO),armf) - cat udsclient-appimage-x86_64.recipe | sed -e s/"version: 0.0.0"/"version: $(VERSION)"/g | sed -e s/amd64\\\|x86_64/armhf/g > appimage.recipe +ifeq ($(DISTRO),armhf) + cat udsclient-appimage-x86_64.recipe | sed -e s/"version: 0.0.0"/"version: $(VERSION)"/g | sed -e s/amd64/armhf/g | sed -e s/x86_64/armhf/g > appimage.recipe endif ifeq ($(DISTRO),i686) cat udsclient-appimage-x86_64.recipe | sed -e s/"version: 0.0.0"/"version: $(VERSION)"/g | sed -e s/amd64/i386/g | sed -e s/x86_64/i686/g > appimage.recipe