summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2011-09-12 20:32:41 +0000
committerMichał Górny <mgorny@gentoo.org>2011-09-12 20:32:41 +0000
commitc7e351845ea3bf6336b20d2f86ece776a59f7d63 (patch)
treefac5274b3418ed18a8e9f20e946ba8a9d266adb9 /eclass/autotools-utils.eclass
parentAdd missing libxfce4util dependency (diff)
downloadgentoo-2-c7e351845ea3bf6336b20d2f86ece776a59f7d63.tar.gz
gentoo-2-c7e351845ea3bf6336b20d2f86ece776a59f7d63.tar.bz2
gentoo-2-c7e351845ea3bf6336b20d2f86ece776a59f7d63.zip
Use einfo to make .{la,a} removals more visible.
Diffstat (limited to 'eclass/autotools-utils.eclass')
-rw-r--r--eclass/autotools-utils.eclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/autotools-utils.eclass b/eclass/autotools-utils.eclass
index 7905d44b9a1b..ad5ffea55f16 100644
--- a/eclass/autotools-utils.eclass
+++ b/eclass/autotools-utils.eclass
@@ -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/eclass/autotools-utils.eclass,v 1.10 2011/09/12 19:11:20 reavertm Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.11 2011/09/12 20:32:41 mgorny Exp $
# @ECLASS: autotools-utils.eclass
# @MAINTAINER:
@@ -151,7 +151,7 @@ remove_libtool_files() {
local shouldnotlink=$(sed -ne '/^shouldnotlink=yes$/p' "${f}")
if [[ "$1" == 'all' || -z ${shouldnotlink} ]]; then
if [[ "$1" != 'none' ]]; then
- echo "Removing unnecessary ${f}"
+ einfo "Removing unnecessary ${f}"
rm -f "${f}"
fi
fi
@@ -159,7 +159,7 @@ remove_libtool_files() {
if [[ -n ${shouldnotlink} ]]; then
local remove=${f/%.la/.a}
[[ "${f}" != "${remove}" ]] || die 'regex sanity check failed'
- echo "Removing unnecessary ${remove}"
+ einfo "Removing unnecessary ${remove}"
rm -f "${remove}"
fi
done