blob: fc405047f1b2c2b1c481a208bd3e1c0e06fd8e4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
if [[ -z $KALYPTUS || ! -d $KALYPTUS ]]
then
echo "Please set enviroment variable KALYPTUS to point to your kdebindings/kaltyptus checkout directory"
exit
fi
perl -I$KALYPTUS $KALYPTUS/kalyptus $2 --allow_k_dcop_accessors -f dcopidl $1 2>/tmp/dcopidlng.stderr.$$
if [[ $? -ne 0 ]]
then
cat /tmp/dcopidlng.stderr.$$
fi
rm /tmp/dcopidlng.stderr.$$
|