diff options
author | Alexis Ballier <aballier@gentoo.org> | 2011-07-06 05:41:01 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2011-07-06 05:41:01 +0000 |
commit | 813f7b2f8e7bbb135b2aa3884690c7e289b62ef8 (patch) | |
tree | 657c867c2c62138dd03692642cfe31e5fa728c57 /eclass | |
parent | Always disable gconf, bug 360307, bug 373605 comment 15; add mesa dep for web... (diff) | |
download | historical-813f7b2f8e7bbb135b2aa3884690c7e289b62ef8.tar.gz historical-813f7b2f8e7bbb135b2aa3884690c7e289b62ef8.tar.bz2 historical-813f7b2f8e7bbb135b2aa3884690c7e289b62ef8.zip |
be a bit more restrictive on how to math libl so that it doesnt match liblzma
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/freebsd.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/freebsd.eclass b/eclass/freebsd.eclass index 4d11d137292a..51927dd001fc 100644 --- a/eclass/freebsd.eclass +++ b/eclass/freebsd.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/freebsd.eclass,v 1.16 2011/07/05 18:46:50 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/freebsd.eclass,v 1.17 2011/07/06 05:41:01 aballier Exp $ # # Diego Pettenò <flameeyes@gentoo.org> @@ -77,7 +77,7 @@ freebsd_rename_libraries() { sed -i -e 's:-ltermcap:-lncurses:g; s:{LIBTERMCAP}:{LIBNCURSES}:g' # flex provides libfl, not libl find "${S}" -name Makefile -print0 | xargs -0 \ - sed -i -e 's:-ll:-lfl:g; s:{LIBL}:{LIBFL}:g' + sed -i -e 's:-ll$:-lfl:g; s:-ll :-lfl :g; s:{LIBL}:{LIBFL}:g' # ncurses provides libncursesw not libcursesw find "${S}" -name Makefile -print0 | xargs -0 \ sed -i -e 's:-lcursesw:-lncursesw:g' |