Revert to /usr/local as default install prefix

/usr/local is standard for locally compiled software
This commit is contained in:
fraggle 2026-01-11 19:08:02 -04:00
parent c6e3c35a80
commit 3d95fd6363
2 changed files with 3 additions and 3 deletions

View File

@ -157,12 +157,12 @@ Install:
```bash
# Remove binary
sudo rm /usr/bin/passage
sudo rm /usr/local/bin/passage
# or for user installation
rm ~/.local/bin/passage
# Remove manpage
sudo rm /usr/share/man/man1/passage.1
sudo rm /usr/local/share/man/man1/passage.1
# or for user installation
rm ~/.local/share/man/man1/passage.1

View File

@ -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
PREFIX ?= /usr/local
MANPREFIX ?= $(PREFIX)/share/man
build: