summaryrefslogtreecommitdiffstats
path: root/dcop/dcopidlng/dcopidlng
blob: 5a4f2b401acb65af43d09c9cc5c4fc40f6643ce6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

tmpfile=`mktemp -t dcopidlng.XXXXXX` || { echo "$0: Cannot create temporary file" >&2; exit 1;  }
trap " [ -f \"$tmpfile\" ] && /bin/rm -f -- \"$tmpfile\"" 0 1 2 3 13 15

if test -z "$KDECONFIG"; then
    KDECONFIG=tde-config
fi
LIBDIR="`$KDECONFIG --install data --expandvars`/dcopidlng"
perl -I"$LIBDIR" "$LIBDIR/kalyptus" --allow_k_dcop_accessors -f dcopidl $1 2> $tmpfile
RET=$?
if [ $RET -ne 0 ]
then
   cat $tmpfile >&2
fi
exit $RET