diff options
author | 2006-09-24 12:23:22 +0000 | |
---|---|---|
committer | 2006-09-24 12:23:22 +0000 | |
commit | 8c88b4d416a2c90fcb5c6d95a24e4869eafcd831 (patch) | |
tree | 46b58e9372fa8ded3aab5d89d38eb8531647f5dc /eclass | |
parent | need libtool at runtime #148841 (diff) | |
download | historical-8c88b4d416a2c90fcb5c6d95a24e4869eafcd831.tar.gz historical-8c88b4d416a2c90fcb5c6d95a24e4869eafcd831.tar.bz2 historical-8c88b4d416a2c90fcb5c6d95a24e4869eafcd831.zip |
fixup style in previous commit
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain-funcs.eclass | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/eclass/toolchain-funcs.eclass b/eclass/toolchain-funcs.eclass index 8f8a3ac7c9e7..05f44b677626 100644 --- a/eclass/toolchain-funcs.eclass +++ b/eclass/toolchain-funcs.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.61 2006/09/24 07:20:33 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.62 2006/09/24 12:23:22 vapier Exp $ # # Author: Toolchain Ninjas <toolchain@gentoo.org> # @@ -275,9 +275,8 @@ _tc_gen_usr_ldscript() { [[ -n ${output_format} ]] && output_format="OUTPUT_FORMAT ( ${output_format} )" for lib in "$@" ; do - if [[ ${USERLAND} == "Darwin" ]]; - then - ewarn "Not creating fake dynamic library for $lib on Darwin," + if [[ ${USERLAND} == "Darwin" ]] ; then + ewarn "Not creating fake dynamic library for $lib on Darwin;" ewarn "making a symlink instead." dosym "/${libdir}/${lib}" "/usr/${libdir}/${lib}" else |