--- eclass/autotools-utils.eclass | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/eclass/autotools-utils.eclass b/eclass/autotools-utils.eclass index 8bc365d..31d228b 100644 --- a/eclass/autotools-utils.eclass +++ b/eclass/autotools-utils.eclass @@ -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 - einfo "Removing unnecessary ${f}" + einfo "Removing unnecessary ${f#${D%/}}" 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' - einfo "Removing unnecessary ${remove}" + einfo "Removing unnecessary ${remove#${D%/}}" rm -f "${remove}" fi done -- 1.7.6.1