diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2008-07-22 22:48:25 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2008-07-22 22:48:25 +0000 |
commit | 524bbb5cc9320e0ba88b4603e3719fd1b5001d2e (patch) | |
tree | a8224cd72ca8df06d33c9ac011108786a746a6df /sys-auth/pam_ssh | |
parent | Don't install the bad system-auth example; tell the user if he/she wants to u... (diff) | |
download | gentoo-2-524bbb5cc9320e0ba88b4603e3719fd1b5001d2e.tar.gz gentoo-2-524bbb5cc9320e0ba88b4603e3719fd1b5001d2e.tar.bz2 gentoo-2-524bbb5cc9320e0ba88b4603e3719fd1b5001d2e.zip |
Quote variable on line 40 for the latest ebuild and use emake for install too.
(Portage version: 2.2_rc1/cvs/Linux 2.6.26-gentoo x86_64)
Diffstat (limited to 'sys-auth/pam_ssh')
-rw-r--r-- | sys-auth/pam_ssh/ChangeLog | 6 | ||||
-rw-r--r-- | sys-auth/pam_ssh/pam_ssh-1.92.ebuild | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/sys-auth/pam_ssh/ChangeLog b/sys-auth/pam_ssh/ChangeLog index bb6025cf3b77..aaed9256e533 100644 --- a/sys-auth/pam_ssh/ChangeLog +++ b/sys-auth/pam_ssh/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-auth/pam_ssh # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_ssh/ChangeLog,v 1.9 2008/07/22 22:46:22 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_ssh/ChangeLog,v 1.10 2008/07/22 22:48:25 flameeyes Exp $ + + 22 Jul 2008; Diego Pettenò <flameeyes@gentoo.org> pam_ssh-1.92.ebuild: + Quote variable on line 40 for the latest ebuild and use emake for install + too. 22 Jul 2008; Diego Pettenò <flameeyes@gentoo.org> pam_ssh-1.92.ebuild: Don't install the bad system-auth example; tell the user if he/she wants diff --git a/sys-auth/pam_ssh/pam_ssh-1.92.ebuild b/sys-auth/pam_ssh/pam_ssh-1.92.ebuild index 1c31baa40e6d..9ffd0c83d1e8 100644 --- a/sys-auth/pam_ssh/pam_ssh-1.92.ebuild +++ b/sys-auth/pam_ssh/pam_ssh-1.92.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_ssh/pam_ssh-1.92.ebuild,v 1.3 2008/07/22 22:46:22 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_ssh/pam_ssh-1.92.ebuild,v 1.4 2008/07/22 22:48:25 flameeyes Exp $ inherit pam eutils @@ -37,7 +37,7 @@ src_compile() { } src_install() { - make install DESTDIR=${D} || die "install failed" + emake DESTDIR="${D}" install || die "install failed" dodoc AUTHORS ChangeLog NEWS README TODO } |