summaryrefslogtreecommitdiffstats
path: root/dcopidlng/dcopidlng
blob: d9ba453ddc890c174d41052e66e999ef666eff79 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
trap "rm -f dcopidlng.stderr.$$" 0 1 2 15
LIBDIR=`dirname $0`
perl -I"$LIBDIR" "$LIBDIR/kalyptus" --allow_k_dcop_accessors -f dcopidl $1 2>dcopidlng.stderr.$$
RET=$?
if [ $RET -ne 0 ]
then
   cat dcopidlng.stderr.$$ >&2
fi
exit $RET