diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2005-01-23 11:28:28 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2005-01-23 11:28:28 +0000 |
commit | 6c2c8eee9f808560e34701bd52a51f4825390567 (patch) | |
tree | 8c5b717b1f2c13b7487bf5b772e63ac2ff3c03ac /profiles | |
parent | Version bump. (diff) | |
download | historical-6c2c8eee9f808560e34701bd52a51f4825390567.tar.gz historical-6c2c8eee9f808560e34701bd52a51f4825390567.tar.bz2 historical-6c2c8eee9f808560e34701bd52a51f4825390567.zip |
Set ABI to DEFAULT_ABI if it's set rather than assuming amd64.
Diffstat (limited to 'profiles')
-rw-r--r-- | profiles/default-linux/amd64/2005.0/profile.bashrc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/profiles/default-linux/amd64/2005.0/profile.bashrc b/profiles/default-linux/amd64/2005.0/profile.bashrc index c5fb06c5e81e..9da7474ae7f3 100644 --- a/profiles/default-linux/amd64/2005.0/profile.bashrc +++ b/profiles/default-linux/amd64/2005.0/profile.bashrc @@ -3,6 +3,8 @@ # won't be in portage until atleast .52_pre if [ -n "${ABI}" ]; then export ABI +elif [ -n "${DEFAULT_ABI}" ]; then + export ABI="${DEFAULT_ABI}" else export ABI="amd64" fi |