23 lines
571 B
Diff
23 lines
571 B
Diff
diff --git a/Makefile b/Makefile
|
|
index ddf2d73..827ea8f 100644
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -31,17 +31,7 @@ common/$(PN): Makefile common/$(PN).in
|
|
|
|
help: install
|
|
|
|
-stop-asd:
|
|
-ifneq ($(PREFIX), /usr)
|
|
- sudo -E asd unsync
|
|
-endif
|
|
-
|
|
-disable-systemd:
|
|
-ifeq ($(PREFIX), /usr)
|
|
- systemctl stop asd asd-resync || /bin/true
|
|
-endif
|
|
-
|
|
-install-bin: stop-asd disable-systemd common/$(PN)
|
|
+install-bin: common/$(PN)
|
|
$(Q)echo -e '\033[1;32mInstalling main script...\033[0m'
|
|
$(INSTALL_DIR) "$(DESTDIR)$(BINDIR)"
|
|
$(INSTALL_PROGRAM) common/$(PN) "$(DESTDIR)$(BINDIR)/$(PN)"
|