summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-08-21 03:48:15 +0000
committerMike Frysinger <vapier@gentoo.org>2005-08-21 03:48:15 +0000
commitbc927505020673cb9718ded533245a7b1ace1f93 (patch)
tree12eaed16d44ab6fca4968ed975c79ea38e4f5980 /sys-devel/crossdev
parentarm/ia64/s390 stable (diff)
downloadgentoo-2-bc927505020673cb9718ded533245a7b1ace1f93.tar.gz
gentoo-2-bc927505020673cb9718ded533245a7b1ace1f93.tar.bz2
gentoo-2-bc927505020673cb9718ded533245a7b1ace1f93.zip
default to ibm vendor for s390 targets
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'sys-devel/crossdev')
-rwxr-xr-xsys-devel/crossdev/files/crossdev5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys-devel/crossdev/files/crossdev b/sys-devel/crossdev/files/crossdev
index 325cd32b7c12..2701d11eee24 100755
--- a/sys-devel/crossdev/files/crossdev
+++ b/sys-devel/crossdev/files/crossdev
@@ -1,7 +1,7 @@
#!/bin/bash
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/crossdev/files/crossdev,v 1.31 2005/08/17 22:48:32 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/crossdev/files/crossdev,v 1.32 2005/08/21 03:48:15 vapier Exp $
if [[ ${ROOT:-/} != "/" ]] ; then
echo "Sorry, but crossdev does not support ROOT."
@@ -61,7 +61,8 @@ parse_target() {
if [[ ${CTARGET/-} == ${CTARGET} || -z ${CPOST} ]] ; then
case ${CPRE} in
x86|i?86*|amd64|x86_64*) CPOST="pc-linux-gnu";;
- *) CPOST="unknown-linux-gnu"
+ s390*) CPOST="ibm-linux-gnu";;
+ *) CPOST="unknown-linux-gnu";;
esac
fi