diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2018-05-11 15:38:27 -0500 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2018-05-11 15:38:27 -0500 |
commit | 3c53680018c1799d0d804e241a9fa4d3b9423896 (patch) | |
tree | 3d76f2adf142efa151901c382f885257ff25cf53 /mk | |
parent | f0ad647303daca528cb9b75f9a07d422318635c2 (diff) |
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.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/sys.mk | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |