From 3d95fd636321145a4751d8434ced0ee8ec49bfe8 Mon Sep 17 00:00:00 2001 From: fraggle Date: Sun, 11 Jan 2026 19:08:02 -0400 Subject: [PATCH] Revert to /usr/local as default install prefix /usr/local is standard for locally compiled software --- INSTALL.md | 4 ++-- Makefile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index b43435e..1816764 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -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 diff --git a/Makefile b/Makefile index f8840d6..86c0f2b 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 +PREFIX ?= /usr/local MANPREFIX ?= $(PREFIX)/share/man build: