Always throw a descriptive exception instead of returning nothing.
[shibboleth/cpp-opensaml.git] / checkinstall
1 #!/bin/sh\r
2 \r
3 expected_platform="sparc"\r
4 platform=`uname -p`\r
5 if [ ${platform} != ${expected_platform} ]; then\r
6         echo "This package must be installed on ${expected_platform}"\r
7         exit 1\r
8 fi\r
9 exit 0\r