summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2012-04-06 18:03:54 +0000
committerAnthony G. Basile <blueness@gentoo.org>2012-04-06 18:03:54 +0000
commit32e32a5153455e2bd5539d1541556bd509c2e2dd (patch)
tree3191dee86180a59780e22a98b10e7eb6adef123a /eclass
parentVersion cleanup: Removing unused versions (diff)
downloadgentoo-2-32e32a5153455e2bd5539d1541556bd509c2e2dd.tar.gz
gentoo-2-32e32a5153455e2bd5539d1541556bd509c2e2dd.tar.bz2
gentoo-2-32e32a5153455e2bd5539d1541556bd509c2e2dd.zip
Downgrade from elog to einfo to avoid flooding logs
Diffstat (limited to 'eclass')
-rw-r--r--eclass/pax-utils.eclass10
1 files changed, 5 insertions, 5 deletions
diff --git a/eclass/pax-utils.eclass b/eclass/pax-utils.eclass
index 0dafc4ab88ee..f4d5be212930 100644
--- a/eclass/pax-utils.eclass
+++ b/eclass/pax-utils.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/pax-utils.eclass,v 1.17 2011/12/17 04:23:53 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/pax-utils.eclass,v 1.18 2012/04/06 18:03:54 blueness Exp $
# @ECLASS: pax-utils.eclass
# @MAINTAINER:
@@ -58,8 +58,8 @@ pax-mark() {
# Try paxctl, then scanelf. paxctl is preferred.
if type -p paxctl > /dev/null && has PT ${PAX_MARKINGS}; then
# Try paxctl, the upstream supported tool.
- elog "PT PaX marking -${flags}"
- _pax_list_files elog "$@"
+ einfo "PT PaX marking -${flags}"
+ _pax_list_files einfo "$@"
for f in "$@"; do
# First, try modifying the existing PAX_FLAGS header
paxctl -q${flags} "${f}" && continue
@@ -91,8 +91,8 @@ pax-mark() {
elif type -p scanelf > /dev/null && [[ ${PAX_MARKINGS} != "none" ]]; then
# Try scanelf, the Gentoo swiss-army knife ELF utility
# Currently this sets PT if it can, no option to control what it does.
- elog "Fallback PaX marking -${flags}"
- _pax_list_files elog "$@"
+ einfo "Fallback PaX marking -${flags}"
+ _pax_list_files einfo "$@"
scanelf -Xxz ${flags} "$@"
elif [[ ${PAX_MARKINGS} != "none" ]]; then
# Out of options!