summaryrefslogtreecommitdiff
path: root/src/pal/tools/smarty.sh
blob: d8b407e72c619ce7a9886d7c4fad0b5ca05de010 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
if ! test "$_TGTCPU"
then
	echo !!!ERROR: _TGTCPU not set.  Please run preptests.sh
fi
if ! test "$CORE_RUN"
then
	echo !!!ERROR: CORE_RUN not set.  Please run preptests.sh
fi
if ! test "$CORE_ROOT"
then
	echo !!!ERROR: CORE_ROOT not set.  Please run preptests.sh
fi
if ! test "$BVT_ROOT"
then
	export BVT_ROOT=$PWD
fi

if [ -n "$PERL5LIB" ] ; then
    if [ -z "`expr $PERL5LIB : ".*\($BVT_ROOT/Common/Smarty\)"`" ] ;  then
        export PERL5LIB="$PERL5LIB:$BVT_ROOT/Common/Smarty"
    fi
else
    export PERL5LIB=$BVT_ROOT/Common/Smarty
fi

perl Common/Smarty/Smarty.pl $*