diff options
author | Timothy Pearson <[email protected]> | 2012-01-01 19:19:07 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-01-01 19:19:07 -0600 |
commit | cf5706eb5adbe5858d87118d200e233abfa1271f (patch) | |
tree | 9c4da2dc3e403f2cdfa2cf8d632098a12fdad2e4 /kalyptus/dcopidlng | |
parent | 795a0355a40293affc7164507e918440d4a828d6 (diff) | |
download | libtqt-perl-cf5706eb5adbe5858d87118d200e233abfa1271f.tar.gz libtqt-perl-cf5706eb5adbe5858d87118d200e233abfa1271f.zip |
Update embedded kalyptus installation
Diffstat (limited to 'kalyptus/dcopidlng')
-rwxr-xr-x | kalyptus/dcopidlng | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/kalyptus/dcopidlng b/kalyptus/dcopidlng new file mode 100755 index 0000000..a9add53 --- /dev/null +++ b/kalyptus/dcopidlng @@ -0,0 +1,12 @@ +#!/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.$$ |