8 lines
159 B
Text
8 lines
159 B
Text
|
#!/bin/sh
|
||
|
if [ x${SOLARENV}x = xx ]; then
|
||
|
echo createpdbrelocators: no environment found!
|
||
|
exit 1
|
||
|
fi
|
||
|
exec perl -w $SOLARENV/bin/createpdbrelocators.pl
|
||
|
|