root/trunk/solaris/checkinstall.in

Revision 2286, 188 bytes (checked in by aj, 4 years ago)

Add solaris/ subdir and files to make using opensc on solaris easier.

  • Property svn:executable set to *
Line 
1#!/bin/sh
2
3expected_platform="@ARCH@"
4platform=`uname -p`
5if [ ${platform} != ${expected_platform} ]; then
6        echo "This package must be installed on ${expected_platform}"
7        exit 1
8fi
9exit 0
Note: See TracBrowser for help on using the browser.