diff options
author | 2004-06-27 20:11:46 +0000 | |
---|---|---|
committer | 2004-06-27 20:11:46 +0000 | |
commit | 2bf6fead2fa7acdc5cf35a38d07fa8b36e3a49db (patch) | |
tree | 676de37ff80a4800de75862384f8d945a5f0c9cc /sys-apps/shadow/shadow-4.0.3-r9.ebuild | |
parent | Fixed BUG #55136. (Manifest recommit) (diff) | |
download | gentoo-2-2bf6fead2fa7acdc5cf35a38d07fa8b36e3a49db.tar.gz gentoo-2-2bf6fead2fa7acdc5cf35a38d07fa8b36e3a49db.tar.bz2 gentoo-2-2bf6fead2fa7acdc5cf35a38d07fa8b36e3a49db.zip |
QA - fix use invocation
Diffstat (limited to 'sys-apps/shadow/shadow-4.0.3-r9.ebuild')
-rw-r--r-- | sys-apps/shadow/shadow-4.0.3-r9.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys-apps/shadow/shadow-4.0.3-r9.ebuild b/sys-apps/shadow/shadow-4.0.3-r9.ebuild index fd89a1136b22..c6057ea6d10c 100644 --- a/sys-apps/shadow/shadow-4.0.3-r9.ebuild +++ b/sys-apps/shadow/shadow-4.0.3-r9.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/shadow/shadow-4.0.3-r9.ebuild,v 1.14 2004/06/24 22:26:23 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/shadow/shadow-4.0.3-r9.ebuild,v 1.15 2004/06/27 20:11:46 agriffis Exp $ IUSE="pam selinux nls" @@ -125,7 +125,7 @@ src_install() { # From sys-apps/pam-login now # insopts -m0644 ; doins ${FILESDIR}/login.defs - if [ `use pam` ] ; then + if use pam ; then insinto /etc/pam.d ; insopts -m0644 for x in ${FILESDIR}/pam.d/* do @@ -153,7 +153,7 @@ src_install() { [ -f ${x} ] && doman ${x} done - if [ ! `use pam` ] ; then + if ! use pam ; then # Dont install the manpage, since we dont use # login with shadow rm -f ${D}/usr/share/man/man1/login.* |