File: dcopidlng

package info (click to toggle)
qt4-qtruby 1.4.6-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 7,716 kB
  • ctags: 4,069
  • sloc: ruby: 21,853; cpp: 15,292; sh: 12,830; perl: 8,986; makefile: 205
file content (12 lines) | stat: -rwxr-xr-x 366 bytes parent folder | download | duplicates (6)
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.$$