diff options
author | Michał Górny <mgorny@gentoo.org> | 2012-06-11 13:02:21 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2012-06-11 13:02:21 +0000 |
commit | 513bf01298a8e22a99aca2e6e2f7fbf81b575596 (patch) | |
tree | 53e7b5c9eedb11d5a3f6b380ffdf015b8c267609 /eclass | |
parent | Stable for x86, wrt bug #417909 (diff) | |
download | gentoo-2-513bf01298a8e22a99aca2e6e2f7fbf81b575596.tar.gz gentoo-2-513bf01298a8e22a99aca2e6e2f7fbf81b575596.tar.bz2 gentoo-2-513bf01298a8e22a99aca2e6e2f7fbf81b575596.zip |
Replace remove_libtool_files with prune_libtool_files.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/xorg-2.eclass | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 1b742047acbe..e248a41a8523 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.307 2012/06/11 12:57:14 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.308 2012/06/11 13:02:21 mgorny Exp $ + + 11 Jun 2012; Michał Górny <mgorny@gentoo.org> xorg-2.eclass: + Replace remove_libtool_files with prune_libtool_files. 11 Jun 2012; Tomáš Chvátal <scarabeus@gentoo.org> xorg-2.eclass: Fix not assigned variable. IE bug#416673. diff --git a/eclass/xorg-2.eclass b/eclass/xorg-2.eclass index 48c3d01c441d..0883978eab92 100644 --- a/eclass/xorg-2.eclass +++ b/eclass/xorg-2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/xorg-2.eclass,v 1.56 2012/06/11 12:57:14 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/xorg-2.eclass,v 1.57 2012/06/11 13:02:21 mgorny Exp $ # @ECLASS: xorg-2.eclass # @MAINTAINER: @@ -468,8 +468,8 @@ xorg-2_src_install() { dodoc "${S}"/ChangeLog || die "dodoc failed" fi - # Don't install libtool archives (even with static-libs) - remove_libtool_files all + # Don't install libtool archives (even for modules) + prune_libtool_files --all [[ -n ${FONT} ]] && remove_font_metadata } |