From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 47B8F198006 for ; Sun, 24 Feb 2013 03:38:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 31BE5E0517; Sun, 24 Feb 2013 03:38:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5D05AE0517 for ; Sun, 24 Feb 2013 03:38:50 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 72A2A33DD84 for ; Sun, 24 Feb 2013 03:38:49 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id C2E6FE4075 for ; Sun, 24 Feb 2013 03:38:46 +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: <1361673039.9eb06745126de85d032d2f5d65ea713065f03c3d.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: 9eb06745126de85d032d2f5d65ea713065f03c3d X-VCS-Branch: master Date: Sun, 24 Feb 2013 03:38:46 +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: 916d406e-ca84-4607-b43e-5560d5426b66 X-Archives-Hash: 41368fe84bb49828902b36ff58427d24 commit: 9eb06745126de85d032d2f5d65ea713065f03c3d Author: Andrew Gregory gmail com> AuthorDate: Sun Feb 17 06:21:09 2013 +0000 Commit: William Hubbs gentoo org> CommitDate: Sun Feb 24 02:30:39 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/openrc.git;a=commit;h=9eb06745 add SBINDIR variable to sys.mk BINDIR was pointing to PREFIX/sbin which was confusing and inconsistent with src/rc/Makefile. Add SBINDIR and redefine BINDIR appropriately. Signed-off-by: Andrew Gregory gmail.com> --- mk/sys.mk | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/mk/sys.mk b/mk/sys.mk index 251287f..ce9e8ea 100644 --- a/mk/sys.mk +++ b/mk/sys.mk @@ -29,9 +29,12 @@ CONFDIR?= ${SYSCONFDIR}/conf.d LOCALDIR?= ${SYSCONFDIR}/local.d SYSCTLDIR?= ${SYSCONFDIR}/sysctl.d -BINDIR?= ${PREFIX}/sbin +BINDIR?= ${PREFIX}/bin BINMODE?= 0755 +SBINDIR?= ${PREFIX}/sbin +SBINMODE?= 0755 + INCDIR?= ${UPREFIX}/include INCMODE?= 0444