From 4cb13789c325180afd096befb5eb7d58b0708cfe Mon Sep 17 00:00:00 2001 From: Marcin Owsiany Date: Tue, 17 Dec 2024 13:45:19 +0100 Subject: [PATCH] Fix install command. Drop -o and -g options from install invocation, they are not needed and actively harmful when install is running as non-root. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bf97289..7cdf860 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ install-mo: $(LINGUAS:%=install-mo-%) .PHONY: install-mo-% install-mo-%: po/%.mo - install -o root -g root -m 0644 -D $< $(PREFIX)/usr/share/locale/$*/LC_MESSAGES/bambam.mo + install -m 0644 -D $< $(PREFIX)/usr/share/locale/$*/LC_MESSAGES/bambam.mo po/%.po: bambam.pot msgmerge -U $@ $<