summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2009-04-12 21:07:56 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2009-04-12 21:07:56 +0000
commit0deecc0d0609f96feeaae063a8ab98c73a1a8b34 (patch)
tree93af6817d9cab2c3bfb5e8f475ce65ac2b7aafec /net-misc/openssh
parentStable on sparc, bug #260063 (diff)
downloadgentoo-2-0deecc0d0609f96feeaae063a8ab98c73a1a8b34.tar.gz
gentoo-2-0deecc0d0609f96feeaae063a8ab98c73a1a8b34.tar.bz2
gentoo-2-0deecc0d0609f96feeaae063a8ab98c73a1a8b34.zip
Switch to UID instead of hardcoded portage per bug #264841 comment.
(Portage version: 2.2_rc27/cvs/Linux x86_64)
Diffstat (limited to 'net-misc/openssh')
-rw-r--r--net-misc/openssh/ChangeLog6
-rw-r--r--net-misc/openssh/openssh-5.2_p1-r2.ebuild4
2 files changed, 7 insertions, 3 deletions
diff --git a/net-misc/openssh/ChangeLog b/net-misc/openssh/ChangeLog
index 16f52adcd892..b6c64fef35fa 100644
--- a/net-misc/openssh/ChangeLog
+++ b/net-misc/openssh/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-misc/openssh
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/ChangeLog,v 1.348 2009/04/12 20:12:50 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/ChangeLog,v 1.349 2009/04/12 21:07:56 robbat2 Exp $
+
+ 12 Apr 2009; Robin H. Johnson <robbat2@gentoo.org>
+ openssh-5.2_p1-r2.ebuild:
+ Switch to UID instead of hardcoded portage per bug #264841 comment.
12 Apr 2009; Robin H. Johnson <robbat2@gentoo.org> files/sshd.rc6:
Bug #265491, fix opts with baselayout1.
diff --git a/net-misc/openssh/openssh-5.2_p1-r2.ebuild b/net-misc/openssh/openssh-5.2_p1-r2.ebuild
index eb88c567e55f..84cf181a87bd 100644
--- a/net-misc/openssh/openssh-5.2_p1-r2.ebuild
+++ b/net-misc/openssh/openssh-5.2_p1-r2.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/openssh-5.2_p1-r2.ebuild,v 1.5 2009/04/12 20:10:55 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/openssh-5.2_p1-r2.ebuild,v 1.6 2009/04/12 21:07:56 robbat2 Exp $
inherit eutils flag-o-matic multilib autotools pam
@@ -182,7 +182,7 @@ src_test() {
local t failed passwd
tests="interop-tests compat-tests"
skipped=""
- portage_shell="$(getent passwd portage |cut -d: -f7)"
+ portage_shell="$(getent passwd ${UID} |cut -d: -f7)"
if [ "${portage_shell/nologin}" != ${portage_shell}" -o
"${portage_shell/false}" != ${portage_shell}" ]; then
elog "Running the full OpenSSH testsuite"