Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2024-05-10 15:21:53 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2024-05-10 15:21:53 +0200
commit04748390905b304fdff5fa7c0d119360007ef690 (patch)
treed2d429261caf9bff5d83e83a3a162155fdc72fd5 /Makefile
parent04ce9be284db8fe4be3b6a7b77bdd31940d0fd7e (diff)
fixed uninstall (we keep it, upstream deleted it)HEADmaster
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index bc726a6..fd0c756 100644
--- a/Makefile
+++ b/Makefile
@@ -37,7 +37,7 @@ install-man:
install -d -m 755 $(MAN_DIR)/man1
rst2man man/mkarchiso.1.rst $(MAN_DIR)/man1/mkarchiso.1
-uninstall: uninstall-scripts uninstall-profiles uninstall-doc
+uninstall: uninstall-scripts uninstall-profiles uninstall-doc uninstall-man
uninstall-scripts:
-rm -rf "${BIN_DIR}/mkarchiso"
@@ -50,7 +50,7 @@ uninstall-doc:
-rm -rf "${DOC_DIR}"
uninstall-man:
- -rm -rf "${MAN_DIR}/man1/mkarchiso.1
+ -rm -rf "${MAN_DIR}/man1/mkarchiso.1"
V=$(shell git describe --exact-match)