From 50f08bc89420005ef78364cc3b9004e10564d730 Mon Sep 17 00:00:00 2001 From: Alexey Avramov Date: Sat, 12 Jan 2019 17:26:51 +0900 Subject: [PATCH] fix makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 08e88d2..758f769 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ install: install -m0755 ./nohang $(DESTDIR)/$(PREFIX)/usr/sbin/nohang install -d $(DESTDIR)/$(PREFIX)/usr/bin - install -m0755 ./nohang_notify_low_mem $(DESTDIR)/$(PREFIX)/usr/bin/nohang_notify_low_mem + install -m0755 ./nohang_notify_helper $(DESTDIR)/$(PREFIX)/usr/bin/nohang_notify_helper install -d $(DESTDIR)/$(PREFIX)/usr/bin install -m0755 ./oom-sort $(DESTDIR)/$(PREFIX)/usr/bin/oom-sort @@ -31,7 +31,7 @@ uninstall: # 'make uninstall' must not fail with error if systemctl is unavailable or returns error systemctl disable nohang.service || true rm -fv $(PREFIX)/usr/sbin/nohang - rm -fv $(PREFIX)/usr/bin/nohang_notify_low_mem + rm -fv $(PREFIX)/usr/bin/nohang_notify_helper rm -fv $(PREFIX)/usr/bin/oom-sort rm -fv $(PREFIX)/usr/bin/oom-trigger rm -fv $(PREFIX)/usr/share/man/man1/nohang.1.gz