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:11
Message-Id: b5eaa0acf1f5497cdbc5fe41329e8a510dc19284.SwifT@gentoo
1 commit: b5eaa0acf1f5497cdbc5fe41329e8a510dc19284
2 Author: Sven Vermeulen <sven.vermeulen <AT> siphos <DOT> be>
3 AuthorDate: Wed Aug 3 11:18:16 2011 +0000
4 Commit: Sven Vermeulen <sven.vermeulen <AT> siphos <DOT> be>
5 CommitDate: Wed Aug 3 11:18:16 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/hardened-dev.git;a=commit;h=b5eaa0ac
7
8 Use $(...) instead of backticks. Thanks to Peter Volkov (pva <AT> g.o)
9
10 ---
11 eclass/selinux-policy-2.eclass | 4 ++--
12 1 files changed, 2 insertions(+), 2 deletions(-)
13
14 diff --git a/eclass/selinux-policy-2.eclass b/eclass/selinux-policy-2.eclass
15 index 5b92514..83ac176 100644
16 --- a/eclass/selinux-policy-2.eclass
17 +++ b/eclass/selinux-policy-2.eclass
18 @@ -131,8 +131,8 @@ selinux-policy-2_src_prepare() {
19
20 # Collect only those files needed for this particular module
21 for i in ${MODS}; do
22 - modfiles="`find ${S}/refpolicy/policy/modules -iname $i.te` $modfiles"
23 - modfiles="`find ${S}/refpolicy/policy/modules -iname $i.fc` $modfiles"
24 + modfiles="$(find ${S}/refpolicy/policy/modules -iname $i.te) $modfiles"
25 + modfiles="$(find ${S}/refpolicy/policy/modules -iname $i.fc) $modfiles"
26 done
27
28 for i in ${POLICY_TYPES}; do