repo.or.cz
/
kdebindings.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* The QPainterPath::Element class was being excluded from the smoke
[kdebindings.git]
/
kalyptus
/
findperl
blob
451758d7102aae1ecb6c1d3c3ed4c0b7c1b95ff4
1
#!/bin/sh
2
3
test -f
perlbin
&&
rm
perlbin
4
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
13
fi
14
fi
15
16
done
17
exit
1