From 3c53680018c1799d0d804e241a9fa4d3b9423896 Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Fri, 11 May 2018 15:38:27 -0500 Subject: [PATCH] build: standardize installation modes Gentoo was changing some of our installation modes from 0444 to 0644. There isn't a reason to install things 0444, so we are switching these to 0644 so the Gentoo ebuild doesn't need this extra step. --- mk/sys.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mk/sys.mk b/mk/sys.mk index db3fb779..92bb55ea 100644 --- a/mk/sys.mk +++ b/mk/sys.mk @@ -45,20 +45,20 @@ SBINDIR?= ${PREFIX}/sbin SBINMODE?= 0755 INCDIR?= ${UPREFIX}/include -INCMODE?= 0444 +INCMODE?= 0644 _LIBNAME_SH= case `readlink /lib` in /lib64|lib64) echo "lib64";; *) echo "lib";; esac _LIBNAME:= $(shell ${_LIBNAME_SH}) LIBNAME?= ${_LIBNAME} LIBDIR?= ${UPREFIX}/${LIBNAME} -LIBMODE?= 0444 +LIBMODE?= 0644 SHLIBDIR?= ${PREFIX}/${LIBNAME} LIBEXECDIR?= ${PREFIX}/libexec/rc MANPREFIX?= ${UPREFIX}/share MANDIR?= ${MANPREFIX}/man -MANMODE?= 0444 +MANMODE?= 0644 BASHCOMPDIR?= ${UPREFIX}/share/bash-completion/completions