| 1 | # Copyright 1999-2010 Gentoo Foundation |
1 | # Copyright 1999-2010 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.11 2011/09/12 20:32:41 mgorny Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.12 2011/09/16 15:20:03 mgorny Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: autotools-utils.eclass |
5 | # @ECLASS: autotools-utils.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Maciej Mrozowski <reavertm@gentoo.org> |
7 | # Maciej Mrozowski <reavertm@gentoo.org> |
| 8 | # Michał Górny <mgorny@gentoo.org> |
8 | # Michał Górny <mgorny@gentoo.org> |
| … | |
… | |
| 144 | # See autotools-utils_src_install for reference. |
144 | # See autotools-utils_src_install for reference. |
| 145 | remove_libtool_files() { |
145 | remove_libtool_files() { |
| 146 | debug-print-function ${FUNCNAME} "$@" |
146 | debug-print-function ${FUNCNAME} "$@" |
| 147 | |
147 | |
| 148 | local f |
148 | local f |
| 149 | for f in $(find "${D}" -type f -name '*.la'); do |
149 | find "${D}" -type f -name '*.la' -print0 | while read -r -d '' f; do |
| 150 | # Keep only .la files with shouldnotlink=yes - likely plugins |
150 | # Keep only .la files with shouldnotlink=yes - likely plugins |
| 151 | local shouldnotlink=$(sed -ne '/^shouldnotlink=yes$/p' "${f}") |
151 | local shouldnotlink=$(sed -ne '/^shouldnotlink=yes$/p' "${f}") |
| 152 | if [[ "$1" == 'all' || -z ${shouldnotlink} ]]; then |
152 | if [[ "$1" == 'all' || -z ${shouldnotlink} ]]; then |
| 153 | if [[ "$1" != 'none' ]]; then |
153 | if [[ "$1" != 'none' ]]; then |
| 154 | einfo "Removing unnecessary ${f}" |
154 | einfo "Removing unnecessary ${f}" |