Bail out if passed --abi on a platform for which we do special-case handling.
This commit is contained in:
parent
8bb95ad74e
commit
045e6bc85b
1 changed files with 6 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
|
||||
# $NetBSD: bootstrap,v 1.130 2008/06/17 11:50:45 sketch Exp $
|
||||
# $NetBSD: bootstrap,v 1.131 2008/06/17 12:11:59 sketch Exp $
|
||||
#
|
||||
#
|
||||
# Copyright (c) 2001-2002 Alistair G. Crooks. All rights reserved.
|
||||
|
@ -164,6 +164,11 @@ EOF
|
|||
get_abi()
|
||||
{
|
||||
abi_opsys=$@
|
||||
|
||||
if [ -n "$abi" ]; then
|
||||
die "ERROR: $abi_opsys has special ABI handling, --abi not supported (yet)."
|
||||
fi
|
||||
|
||||
case "$abi_opsys" in
|
||||
IRIX)
|
||||
if [ `uname -r` -ge 6 ]; then
|
||||
|
|
Loading…
Reference in a new issue