* The QPainterPath::Element class was being excluded from the smoke
[kdebindings.git] / kalyptus / findperl
blob451758d7102aae1ecb6c1d3c3ed4c0b7c1b95ff4
1 #!/bin/sh
3 test -f perlbin && rm perlbin
5 for p in `echo $PATH | tr ":" " "`
6 do
7 if [ -x $p/perl ]
8 then
9 if $p/perl -e 'require 5.000;'
10 then
11 echo $p/perl > perlbin
12 exit 0
16 done
17 exit 1