From a76d16ad1b060db8b6f6e70eeae08a262403aee9 Mon Sep 17 00:00:00 2001 From: asmeron Date: Tue, 16 Apr 2024 11:58:37 +0600 Subject: [PATCH] Fix Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 121e6be..a1c489d 100644 --- a/Makefile +++ b/Makefile @@ -124,7 +124,7 @@ install: check done @install -Dm644 -t "${DESTDIR}/usr/share/icons/hicolor/scalable/apps/" "com.ublinux.${PKGNAME}.svg" @for FILE_ICON in $(wildcard icons/*/*.svg); do \ - SUB_NAME=$${FILE_ICON#*/};SUB_NAME=$${FILE_ICON%/*}; \ + SUB_NAME=$${FILE_ICON#*/}; SUB_NAME=$${SUB_NAME%/*}; \ install -Dm644 -t "${DESTDIR}/usr/share/icons/hicolor/scalable/$${SUB_NAME}" $${FILE_ICON}; \ done @if [ -z ${DESTDIR} ]; then \