diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2005-07-13 22:11:01 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2005-07-13 22:11:01 +0000 |
commit | 533e972eb89b267fe0e32f1d2924986020228649 (patch) | |
tree | 7fefd6681421dd600ca41aa6cae4082640b581ee /profiles/default-linux | |
parent | stablize current version and remove old version. bug #97187 (diff) | |
download | gentoo-2-533e972eb89b267fe0e32f1d2924986020228649.tar.gz gentoo-2-533e972eb89b267fe0e32f1d2924986020228649.tar.bz2 gentoo-2-533e972eb89b267fe0e32f1d2924986020228649.zip |
Make the 'you don't have a multilib compiler' error message a bit more helpful to the user.
Diffstat (limited to 'profiles/default-linux')
-rw-r--r-- | profiles/default-linux/amd64/2005.0/scripts/2004.3-2005.0upgrade.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/profiles/default-linux/amd64/2005.0/scripts/2004.3-2005.0upgrade.sh b/profiles/default-linux/amd64/2005.0/scripts/2004.3-2005.0upgrade.sh index 7d6e25f15a6c..6ba11ece393a 100644 --- a/profiles/default-linux/amd64/2005.0/scripts/2004.3-2005.0upgrade.sh +++ b/profiles/default-linux/amd64/2005.0/scripts/2004.3-2005.0upgrade.sh @@ -91,9 +91,10 @@ if [[ ! -f step0 ]]; then fi if [[ "$(gcc -m32 -print-multi-directory)" != "32" ]]; then - eerror "Your compiler does not have multilib support." - eerror "Please emerge gcc with USE=multilib:" - eerror "FEATURES=-sandbox USE=multilib emerge gcc." + eerror "Your compiler does not have multilib support. Pleasse switch to a multilib" + eerror "enabled compiler with gcc-config. If yo don't have one on your system, you can" + eerror "emerga a multilib gcc by executing the following line:" + eerror "FEATURES=-sandbox USE=multilib emerge gcc" exit 1 fi |