diff options
author | Travis Tilley <lv@gentoo.org> | 2004-11-09 18:54:23 +0000 |
---|---|---|
committer | Travis Tilley <lv@gentoo.org> | 2004-11-09 18:54:23 +0000 |
commit | fad917a01be12af6cc83c3a61edaa5b9e81b4ece (patch) | |
tree | d5ed3e214352136b8e55f8080471148dd096bbf1 /eclass | |
parent | Bump (diff) | |
download | historical-fad917a01be12af6cc83c3a61edaa5b9e81b4ece.tar.gz historical-fad917a01be12af6cc83c3a61edaa5b9e81b4ece.tar.bz2 historical-fad917a01be12af6cc83c3a61edaa5b9e81b4ece.zip |
set S properly. oops.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain.eclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 1058dbe98fe4..1b18bcb31860 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.45 2004/11/08 05:54:25 lv Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.46 2004/11/09 18:54:23 lv Exp $ # # This eclass should contain general toolchain-related functions that are # expected to not change, or change much. @@ -138,6 +138,8 @@ gcc_pkg_setup() { gcc_setup_static_vars gcc_setup_variables + S="$(gcc_get_s_dir)" + ${ETYPE}-pkg_setup || die "${ETYPE}-pkg_setup failed" } |