You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
450 B
17 lines
450 B
#!/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
|