blob: ce878a6e3ff6a76ff3075202becedbcf7df110d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#! /bin/sh
# Do the Solaris Dance:
if [ ! -d ~root ] ; then
exec /usr/xpg4/bin/sh $0 "$@"
fi
set -e
. ${srcdir}/common
ARGS="--libs simple"
RESULT="-lsimple"
run_test
|