diff options
author | Nicholas Jones <carpaski@gentoo.org> | 2004-01-26 08:42:06 +0000 |
---|---|---|
committer | Nicholas Jones <carpaski@gentoo.org> | 2004-01-26 08:42:06 +0000 |
commit | 06927aaa893bf0713ff23334a1ff8c419b0358d0 (patch) | |
tree | 6ec5d13245a1c9774bd886258a513227d79c9db2 /eclass | |
parent | comment out by default (diff) | |
download | historical-06927aaa893bf0713ff23334a1ff8c419b0358d0.tar.gz historical-06927aaa893bf0713ff23334a1ff8c419b0358d0.tar.bz2 historical-06927aaa893bf0713ff23334a1ff8c419b0358d0.zip |
Added quotes on the empty check so that it worked.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/selinux-policy.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/selinux-policy.eclass b/eclass/selinux-policy.eclass index 84f147ed8c7d..9a6fbe8f11d5 100644 --- a/eclass/selinux-policy.eclass +++ b/eclass/selinux-policy.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/selinux-policy.eclass,v 1.6 2003/10/16 14:28:54 pebenito Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/selinux-policy.eclass,v 1.7 2004/01/26 08:42:06 carpaski Exp $ # Eclass for installing SELinux policy, and optionally # reloading the policy @@ -19,7 +19,7 @@ IUSE="" newrdepend ">=sec-policy/selinux-base-policy-20030729" -[ -z ${POLICYDIR} ] && POLICYDIR="/etc/security/selinux/src/policy" +[ -z "${POLICYDIR}" ] && POLICYDIR="/etc/security/selinux/src/policy" SAVENAME="`date +%Y%m%d%H%M`-${PN}.tar.bz2" SAVEDIR="`echo "${POLICYDIR}" | cut -d/ -f6`" |