diff options
author | Alexis Ballier <aballier@gentoo.org> | 2012-05-17 13:58:08 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2012-05-17 13:58:08 +0000 |
commit | 62c02b4b2beba33ca53553a647c5f61fb098789a (patch) | |
tree | d9531dcb41933e0bbc781c2434f99d4db79cf433 /eclass | |
parent | Disable postproc in here and use the common library that will be used by both... (diff) | |
download | gentoo-2-62c02b4b2beba33ca53553a647c5f61fb098789a.tar.gz gentoo-2-62c02b4b2beba33ca53553a647c5f61fb098789a.tar.bz2 gentoo-2-62c02b4b2beba33ca53553a647c5f61fb098789a.zip |
make rename_libraries rename bsdxml to expat too.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/freebsd.eclass | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/eclass/freebsd.eclass b/eclass/freebsd.eclass index b09a1f9b0e96..b456aefc9d56 100644 --- a/eclass/freebsd.eclass +++ b/eclass/freebsd.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/freebsd.eclass,v 1.20 2012/05/16 15:44:43 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/freebsd.eclass,v 1.21 2012/05/17 13:58:08 aballier Exp $ # # Diego Pettenò <flameeyes@gentoo.org> @@ -81,6 +81,9 @@ freebsd_rename_libraries() { # ncurses provides libncursesw not libcursesw find "${S}" -name Makefile -print0 | xargs -0 \ sed -i -e 's:-lcursesw:-lncursesw:g' + # we use expat instead of bsdxml + find "${S}" -name Makefile -print0 | xargs -0 \ + sed -i -e 's:-lbsdxml:-lexpat:g' eend $? } |