diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2015-05-12 15:15:31 +0000 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2015-05-12 15:15:31 +0000 |
commit | 9f2935a2a4b8d5b4b443db1e3ab66f55b78ca0dc (patch) | |
tree | 3042d2cee132373d686b676e1e0915b79333f85f /eclass | |
parent | initial commit of gr-rds based on ebuild from jannis on bug #533768 (diff) | |
download | historical-9f2935a2a4b8d5b4b443db1e3ab66f55b78ca0dc.tar.gz historical-9f2935a2a4b8d5b4b443db1e3ab66f55b78ca0dc.tar.bz2 historical-9f2935a2a4b8d5b4b443db1e3ab66f55b78ca0dc.zip |
Drop elog in webapp_serverowned, discussed with blueness in bug #542024
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/webapp.eclass | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index e3b0e1a8dd11..c3b75e43f17e 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1613 2015/05/10 15:24:30 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1614 2015/05/12 15:15:31 voyageur Exp $ + + 12 May 2015; Bernard Cafarelli <voyageur@gentoo.org> webapp.eclass: + Drop elog in webapp_serverowned, discussed with blueness in bug #542024 10 May 2015; Davide Pesavento <pesa@gentoo.org> qmake-utils.eclass: Don't prepend EPREFIX for {header,mkspecs}dir since these are mostly used diff --git a/eclass/webapp.eclass b/eclass/webapp.eclass index 991e9321fb23..aa1a8de3fa7c 100644 --- a/eclass/webapp.eclass +++ b/eclass/webapp.eclass @@ -1,6 +1,6 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/webapp.eclass,v 1.72 2012/07/18 14:59:29 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/webapp.eclass,v 1.73 2015/05/12 15:15:31 voyageur Exp $ # @ECLASS: webapp.eclass # @MAINTAINER: @@ -244,7 +244,6 @@ _webapp_serverowned() { local my_file="$(webapp_strip_appdir "${1}")" my_file="$(webapp_strip_cwd "${my_file}")" - elog "(server owned) ${my_file}" echo "${my_file}" >> "${D}/${WA_SOLIST}" } |