From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EFA151382C5 for ; Fri, 11 May 2018 20:40:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 593A1E09E7; Fri, 11 May 2018 20:40:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 35376E09E7 for ; Fri, 11 May 2018 20:40:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C346B335C87 for ; Fri, 11 May 2018 20:40:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2318D287 for ; Fri, 11 May 2018 20:40:40 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1526071107.3c53680018c1799d0d804e241a9fa4d3b9423896.williamh@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: mk/ X-VCS-Repository: proj/openrc X-VCS-Files: mk/sys.mk X-VCS-Directories: mk/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 3c53680018c1799d0d804e241a9fa4d3b9423896 X-VCS-Branch: master Date: Fri, 11 May 2018 20:40:40 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d0fe379c-2c15-4320-aec1-7621c2e35caa X-Archives-Hash: af48f446bbd0f8dd7e4ef9151c463951 commit: 3c53680018c1799d0d804e241a9fa4d3b9423896 Author: William Hubbs gmail com> AuthorDate: Fri May 11 20:38:27 2018 +0000 Commit: William Hubbs gentoo org> CommitDate: Fri May 11 20:38:27 2018 +0000 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=3c536800 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