summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2008-03-01 21:59:54 +0000
committerMike Frysinger <vapier@gentoo.org>2008-03-01 21:59:54 +0000
commit64983df3fa67f07aefcb6c6f6008d1b8ec2083ed (patch)
tree33c419a98d671db2f07b764ebd2a4a71d18cba8b /eclass
parentcleaned up minimal use logic and updated for bug #211456 (diff)
downloadgentoo-2-64983df3fa67f07aefcb6c6f6008d1b8ec2083ed.tar.gz
gentoo-2-64983df3fa67f07aefcb6c6f6008d1b8ec2083ed.tar.bz2
gentoo-2-64983df3fa67f07aefcb6c6f6008d1b8ec2083ed.zip
add rm copy & paste lines #212018
Diffstat (limited to 'eclass')
-rw-r--r--eclass/eutils.eclass7
1 files changed, 5 insertions, 2 deletions
diff --git a/eclass/eutils.eclass b/eclass/eutils.eclass
index a527a4fdb426..2a3d48b59e1a 100644
--- a/eclass/eutils.eclass
+++ b/eclass/eutils.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.299 2008/02/20 17:32:02 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.300 2008/03/01 21:59:54 vapier Exp $
# @ECLASS: eutils.eclass
# @MAINTAINER:
@@ -1649,7 +1649,10 @@ preserve_old_lib_notify() {
if [[ ${notice} -eq 1 ]] ; then
ewarn
ewarn "Once you've finished running revdep-rebuild, it should be safe to"
- ewarn "delete the old libraries."
+ ewarn "delete the old libraries. Here is a copy & paste for the lazy:"
+ for lib in "$@" ; do
+ ewarn " # rm '${lib}'"
+ done
fi
}