diff options
author | Hank <hanketsu@egregore.fun> | 2025-04-06 15:59:36 +0200 |
---|---|---|
committer | Hank <hanketsu@egregore.fun> | 2025-04-07 10:53:33 +0200 |
commit | 5cb7fbf4e4fcacdd48ea057d258245cef9fc5df3 (patch) | |
tree | 7768d64ecb839e531f34148c4e418e0aca10d4cf /Makefile | |
parent | 4f4dcabefc2db0d7351f029e7130f608ad6f9397 (diff) |
fix: move from /bin to /sbin
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3,9 +3,9 @@ DESTDIR ?= /usr/local all: pm-suspend install: pm-suspend pm-suspend.1 - install -D -m 755 ./pm-suspend $(DESTDIR)/bin/pm-suspend + install -D -m 755 ./pm-suspend $(DESTDIR)/sbin/pm-suspend install -D -m 644 ./pm-suspend.1 $(DESTDIR)/share/man/man1/pm-suspend.1 uninstall: - rm -f $(DESTDIR)/bin/pm-suspend + rm -f $(DESTDIR)/sbin/pm-suspend rm -f $(DESTDIR)/share/man/man1/pm-suspend.1 |