From c6e3c35a80d668f50a5e3c1283ef3a6f1a52dc11 Mon Sep 17 00:00:00 2001 From: fraggle Date: Sun, 11 Jan 2026 19:07:34 -0400 Subject: [PATCH] Change default install directory to /usr/bin - Update Makefile PREFIX default from /usr/local to /usr - Update INSTALL.md uninstall instructions to reflect /usr/bin --- INSTALL.md | 8 ++++---- Makefile | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 670328f..b43435e 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -157,13 +157,13 @@ Install: ```bash # Remove binary -sudo rm /usr/local/bin/passage -# or +sudo rm /usr/bin/passage +# or for user installation rm ~/.local/bin/passage # Remove manpage -sudo rm /usr/local/share/man/man1/passage.1 -# or +sudo rm /usr/share/man/man1/passage.1 +# or for user installation rm ~/.local/share/man/man1/passage.1 # Update man database diff --git a/Makefile b/Makefile index 86c0f2b..f8840d6 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ .PHONY: build install clean test release man install-man VERSION ?= $(shell git describe --tags --always --dirty 2>/dev/null || echo "dev") -PREFIX ?= /usr/local +PREFIX ?= /usr MANPREFIX ?= $(PREFIX)/share/man build: