diff options
author | Mattias Andrée <maandree@kth.se> | 2023-06-23 19:40:03 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2023-06-23 19:40:03 +0200 |
commit | ef7ce6995ab38102c928172310155cf648881707 (patch) | |
tree | b02a1181aeb759f852371262778eca472f6564f9 | |
parent | Add pepper (diff) | |
download | key2root-ef7ce6995ab38102c928172310155cf648881707.tar.gz key2root-ef7ce6995ab38102c928172310155cf648881707.tar.bz2 key2root-ef7ce6995ab38102c928172310155cf648881707.tar.xz |
Makefile: fix uninstall rule1.0
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -42,7 +42,7 @@ install: $(BIN) cp -- $(MAN8) "$(DESTDIR)$(MANPREFIX)/man8/" uninstall: - -cd -- "$(DESTDIR)$(PREFIX)/bin/" && rm -f -- $(BIND) + -cd -- "$(DESTDIR)$(PREFIX)/bin/" && rm -f -- $(BIN) -cd -- "$(DESTDIR)$(MANPREFIX)/man8/" && rm -f -- $(MAN8) clean: |