diff options
author | Andrew Savchenko <bircoph@gentoo.org> | 2015-03-25 21:32:36 +0000 |
---|---|---|
committer | Andrew Savchenko <bircoph@gentoo.org> | 2015-03-25 21:32:36 +0000 |
commit | f95688568333d0456238e4d425f48fcde5d73cd9 (patch) | |
tree | aab91d65aea7d05a5793c78dd3eae3f7bd62468a /sci-physics | |
parent | Fix the server logging patch to work on IPv6 & x86 (socketcall) #544254 by Th... (diff) | |
download | gentoo-2-f95688568333d0456238e4d425f48fcde5d73cd9.tar.gz gentoo-2-f95688568333d0456238e4d425f48fcde5d73cd9.tar.bz2 gentoo-2-f95688568333d0456238e4d425f48fcde5d73cd9.zip |
Declare loop iterator as local.
Signed-off-by: Andrew Savchenko <bircoph@gentoo.org>
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 565953B95372756C)
Diffstat (limited to 'sci-physics')
-rw-r--r-- | sci-physics/root/ChangeLog | 5 | ||||
-rw-r--r-- | sci-physics/root/root-5.34.26.ebuild | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/sci-physics/root/ChangeLog b/sci-physics/root/ChangeLog index f1c8511041c3..63ae8c5e0157 100644 --- a/sci-physics/root/ChangeLog +++ b/sci-physics/root/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-physics/root # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-physics/root/ChangeLog,v 1.138 2015/03/17 22:07:42 bircoph Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-physics/root/ChangeLog,v 1.139 2015/03/25 21:32:36 bircoph Exp $ + + 25 Mar 2015; Andrew Savchenko <bircoph@gentoo.org> root-5.34.26.ebuild: + Declare loop iterator as local. 17 Mar 2015; Andrew Savchenko <bircoph@gentoo.org> root-5.34.26.ebuild, +files/root-5.34.26-ldflags.patch: diff --git a/sci-physics/root/root-5.34.26.ebuild b/sci-physics/root/root-5.34.26.ebuild index aefc18541e4b..f13180d58943 100644 --- a/sci-physics/root/root-5.34.26.ebuild +++ b/sci-physics/root/root-5.34.26.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-physics/root/root-5.34.26.ebuild,v 1.2 2015/03/17 22:07:42 bircoph Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-physics/root/root-5.34.26.ebuild,v 1.3 2015/03/25 21:32:36 bircoph Exp $ EAPI=5 @@ -361,6 +361,7 @@ daemon_install() { dodir /var/spool/rootd/{pub,tmp} fperms 1777 /var/spool/rootd/{pub,tmp} + local i for i in ${daemons}; do newinitd "${FILESDIR}"/${i}.initd ${i} newconfd "${FILESDIR}"/${i}.confd ${i} |