Gentoo Archives: gentoo-commits

From: Sven Vermeulen <sven.vermeulen@××××××.be>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/hardened-dev:master commit in: eclass/
Date: Wed, 03 Aug 2011 11:59:31
Message-Id: 2f23308160e9aab96410721249df4534b26bb087.SwifT@gentoo
1 commit: 2f23308160e9aab96410721249df4534b26bb087
2 Author: Sven Vermeulen <sven.vermeulen <AT> siphos <DOT> be>
3 AuthorDate: Wed Aug 3 11:55:54 2011 +0000
4 Commit: Sven Vermeulen <sven.vermeulen <AT> siphos <DOT> be>
5 CommitDate: Wed Aug 3 11:55:54 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/hardened-dev.git;a=commit;h=2f233081
7
8 Use emake instead of make. Thanks to Peter Volkov (pva <AT> g.o)
9
10 ---
11 eclass/selinux-policy-2.eclass | 2 +-
12 1 files changed, 1 insertions(+), 1 deletions(-)
13
14 diff --git a/eclass/selinux-policy-2.eclass b/eclass/selinux-policy-2.eclass
15 index 423553a..0229ad4 100644
16 --- a/eclass/selinux-policy-2.eclass
17 +++ b/eclass/selinux-policy-2.eclass
18 @@ -151,7 +151,7 @@ selinux-policy-2_src_prepare() {
19 # this for each SELinux policy mentioned in POLICY_TYPES
20 selinux-policy-2_src_compile() {
21 for i in ${POLICY_TYPES}; do
22 - make NAME=$i -C "${S}"/${i} || die "${i} compile failed"
23 + emake NAME=$i -C "${S}"/${i} || die "${i} compile failed"
24 done
25 }