#!/bin/sh

LIDIA_ARCH=$1

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

echo $LIDIA_ARCH
