From 8eeb3613005d7fce4a17d4cb7fa2d98ca753c6d6 Mon Sep 17 00:00:00 2001 From: Jaromil Date: Sun, 25 Oct 2015 22:28:23 +0100 Subject: [PATCH] correct permissions on installed manpage (10x Jarno) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 665d491..94ef0ab 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ all: install: install -Dm755 ${PROG} ${DESTDIR}${PREFIX}/bin/${PROG} - install -Dm666 doc/${PROG}.1 ${DESTDIR}${MANDIR}/man1/${PROG}.1 + install -Dm644 doc/${PROG}.1 ${DESTDIR}${MANDIR}/man1/${PROG}.1 @echo @echo "Tomb is installed succesfully. To install language translations, make sure" @echo "gettext is also installed, then 'cd extras/po' and 'make install' there."