#!/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=kde-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