From 32e32a5153455e2bd5539d1541556bd509c2e2dd Mon Sep 17 00:00:00 2001 From: "Anthony G. Basile" Date: Fri, 6 Apr 2012 18:03:54 +0000 Subject: Downgrade from elog to einfo to avoid flooding logs --- eclass/pax-utils.eclass | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'eclass/pax-utils.eclass') 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! -- cgit v1.2.3-65-gdbad