From 9a6da5255a61ccc573968d25737d19abfa8673de Mon Sep 17 00:00:00 2001 From: Ivan Yarcev Date: Fri, 7 Jul 2023 16:07:38 +0600 Subject: [PATCH] Fixed install loop --- Makefile | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index a2bb33c..f22cb51 100644 --- a/Makefile +++ b/Makefile @@ -70,10 +70,7 @@ check: build: depend prepare @echo "Build ..."; \ make --directory=${CMAKE_BUILD_DIR}; \ - echo "Build: OK"; \ - cd ubl-settings-repo-back; \ - make ; \ - cd ../ + echo "Build: OK" uninstall: @echo "Uninstall ..." @@ -135,10 +132,7 @@ install: check uninstall [ -d "${DESTDIR}${PREFIX}/share/icons/hicolor/" ] && gtk-update-icon-cache -fiq "${DESTDIR}${PREFIX}/share/icons/hicolor/" &>/dev/null || true; \ update-desktop-database --quiet &>/dev/null || true; \ [ -d "${DESTDIR}${PREFIX}/share/applications" ] && touch "${DESTDIR}${PREFIX}/share/applications" &>/dev/null || true; \ - fi; \ - cd ./ubl-settings-repo-back; \ - make install; \ - cd ../ + fi; @echo "Install: OK" @sed -r "s/^(string version_application=\"*\").*/string version_application;/" -i source/${PKGNAME}.h; \