1#!/bin/sh
2echo " "
3echo "REPORT ALL BUGS, PROBLEMS, AND ACCOLADES TO:"
4echo " "
5echo "         Zip-Bugs@lists.wku.edu"
6echo " "
7echo "Checking architecture platform for .ARCH. ..."
8arch=`uname -p`
9if [ "arch_${arch}" != "arch_.ARCH." ]; then
10   echo " "
11   echo "This product MUST be installed on a Solaris .ARCH. platform."
12   echo "Your machine looks like it is a ${arch} platform."
13   echo "Please install the version for the .ARCH. architecture."
14   echo "Aborting the installation because of this. "
15   echo " "
16   returncode=1
17 else
18   echo " "
19   echo "This product works on .ARCH., which you happen to have!"
20   echo " "
21   returncode=0
22fi
23echo " "
24/usr/bin/sleep 4
25exit ${returncode:-1}
26#
27