diff options
author | Patrick Lauer <patrick@gentoo.org> | 2010-05-11 11:27:47 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2010-05-11 11:27:47 +0000 |
commit | 5744a32506e5c91471c266dd631ae5751cbb9c1d (patch) | |
tree | 9285dbd71a78950aa28ef5dd16172005a4193bd4 /net-fs | |
parent | Version bump for beta channel relase. Fix bug #315667 by Joel (diff) | |
download | gentoo-2-5744a32506e5c91471c266dd631ae5751cbb9c1d.tar.gz gentoo-2-5744a32506e5c91471c266dd631ae5751cbb9c1d.tar.bz2 gentoo-2-5744a32506e5c91471c266dd631ae5751cbb9c1d.zip |
Removing stray dobin call that triggered #318001
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'net-fs')
-rw-r--r-- | net-fs/samba/ChangeLog | 6 | ||||
-rw-r--r-- | net-fs/samba/samba-3.4.6.ebuild | 4 | ||||
-rw-r--r-- | net-fs/samba/samba-3.4.8.ebuild | 4 | ||||
-rw-r--r-- | net-fs/samba/samba-3.5.2-r1.ebuild | 4 |
4 files changed, 11 insertions, 7 deletions
diff --git a/net-fs/samba/ChangeLog b/net-fs/samba/ChangeLog index d84904c15d80..ae69196cf5aa 100644 --- a/net-fs/samba/ChangeLog +++ b/net-fs/samba/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-fs/samba # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/ChangeLog,v 1.411 2010/05/11 10:55:45 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/ChangeLog,v 1.412 2010/05/11 11:27:47 patrick Exp $ + + 11 May 2010; Patrick Lauer <patrick@gentoo.org> samba-3.4.6.ebuild, + samba-3.4.8.ebuild, samba-3.5.2-r1.ebuild: + Removing stray dobin call that triggered #318001 *samba-3.4.8 (11 May 2010) diff --git a/net-fs/samba/samba-3.4.6.ebuild b/net-fs/samba/samba-3.4.6.ebuild index db8aa05b1996..cfdbfe4d6423 100644 --- a/net-fs/samba/samba-3.4.6.ebuild +++ b/net-fs/samba/samba-3.4.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/samba-3.4.6.ebuild,v 1.2 2010/05/04 14:26:23 tester Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/samba-3.4.6.ebuild,v 1.3 2010/05/11 11:27:47 patrick Exp $ EAPI="2" @@ -270,7 +270,7 @@ src_install() { dosbin ${prog} || die "installing ${prog} failed" doman ../docs/manpages/${prog/bin\/}* || die "doman failed" done - dobin ${BINPROGS} || die "installing binaries failed" + for prog in ${BINPROGS} ; do dobin ${prog} || die "installing ${prog} failed" doman ../docs/manpages/${prog/bin\/}* || die "doman failed" diff --git a/net-fs/samba/samba-3.4.8.ebuild b/net-fs/samba/samba-3.4.8.ebuild index aed6a9ab4d27..722eda9c73d2 100644 --- a/net-fs/samba/samba-3.4.8.ebuild +++ b/net-fs/samba/samba-3.4.8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/samba-3.4.8.ebuild,v 1.1 2010/05/11 10:55:45 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/samba-3.4.8.ebuild,v 1.2 2010/05/11 11:27:47 patrick Exp $ EAPI="2" @@ -270,7 +270,7 @@ src_install() { dosbin ${prog} || die "installing ${prog} failed" doman ../docs/manpages/${prog/bin\/}* || die "doman failed" done - dobin ${BINPROGS} || die "installing binaries failed" + for prog in ${BINPROGS} ; do dobin ${prog} || die "installing ${prog} failed" doman ../docs/manpages/${prog/bin\/}* || die "doman failed" diff --git a/net-fs/samba/samba-3.5.2-r1.ebuild b/net-fs/samba/samba-3.5.2-r1.ebuild index 060813bfe776..4264d521af03 100644 --- a/net-fs/samba/samba-3.5.2-r1.ebuild +++ b/net-fs/samba/samba-3.5.2-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/samba-3.5.2-r1.ebuild,v 1.1 2010/05/10 11:26:10 lxnay Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/samba-3.5.2-r1.ebuild,v 1.2 2010/05/11 11:27:47 patrick Exp $ EAPI="2" @@ -273,7 +273,7 @@ src_install() { dosbin ${prog} || die "installing ${prog} failed" doman ../docs/manpages/${prog/bin\/}* || die "doman failed" done - dobin ${BINPROGS} || die "installing binaries failed" + for prog in ${BINPROGS} ; do dobin ${prog} || die "installing ${prog} failed" doman ../docs/manpages/${prog/bin\/}* || die "doman failed" |