* The QPainterPath::Element class was being excluded from the smoke
[kdebindings.git] / kalyptus / dcopidlng
blobfc405047f1b2c2b1c481a208bd3e1c0e06fd8e4a
1 #!/bin/sh
2 if [[ -z $KALYPTUS || ! -d $KALYPTUS ]]
3 then
4 echo "Please set enviroment variable KALYPTUS to point to your kdebindings/kaltyptus checkout directory"
5 exit
6 fi
7 perl -I$KALYPTUS $KALYPTUS/kalyptus $2 --allow_k_dcop_accessors -f dcopidl $1 2>/tmp/dcopidlng.stderr.$$
8 if [[ $? -ne 0 ]]
9 then
10 cat /tmp/dcopidlng.stderr.$$
12 rm /tmp/dcopidlng.stderr.$$