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.
13 lines
366 B
13 lines
366 B
#!/bin/sh
|
|
if [[ -z $KALYPTUS || ! -d $KALYPTUS ]]
|
|
then
|
|
echo "Please set enviroment variable KALYPTUS to point to your tdebindings/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.$$
|