#!/bin/sh
#
# Created `Mon Mar 11 10:06:04 MET 1996' By `papanik'.
# Copyright (c) 1995 By The LiDIA Group -- All Rights Reserved.
# Author --  Thomas Papanikolaou (TP)
#

LIDIA_ARCH=$1

if test $LIDIA_ARCH = "sparc" ; then
  LIDIA_ARCH="sparc7"
  if test `uname -m` = "sun4m" -o `uname -m` = "sun4u" ; then
    LIDIA_ARCH="sparc8"
  fi
fi

echo $LIDIA_ARCH
